Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / events / clipboard-clearData-expected.txt
blobb1f7cf1263105d0bf8faf456590a71bd9208563e
1 Tests clipboard.clearData()
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 PASS testDataTransfer.clearData(null) did not throw exception.
7 PASS testDataTransfer.clearData(undefined) did not throw exception.
8 PASS testDataTransfer.getData("text") is "sample"
9 PASS testDataTransfer.getData("url") is "http://www.google.com/"
10 PASS testDataTransfer.getData("text/html") is "<em>Markup</em>"
11 PASS testDataTransfer.getData("custom-data") is "hello world"
12 PASS testDataTransfer.clearData("custom-data") did not throw exception.
13 PASS testDataTransfer.getData("text") is "sample"
14 PASS testDataTransfer.getData("url") is "http://www.google.com/"
15 PASS testDataTransfer.getData("text/html") is "<em>Markup</em>"
16 PASS testDataTransfer.getData("custom-data") is ""
17 PASS testDataTransfer.clearData() did not throw exception.
18 PASS testDataTransfer.getData("text") is ""
19 PASS testDataTransfer.getData("url") is ""
20 PASS testDataTransfer.getData("text/html") is ""
21 PASS testDataTransfer.getData("custom-data") is ""
22 PASS successfullyParsed is true
24 TEST COMPLETE