Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / cursor-parsing-quirks-expected.txt
blob04a1701ca7f6d9e503ae9b2b915c999d08a3a991
1 Test the parsing of the cursor property in quirks mode.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 Test cursor rules which should accept 'hand' as an alias of 'pointer'.
7 PASS roundtripCssRule("cursor: hand;") is "cursor: pointer;"
8 PASS roundtripCssRule("cursor: url(file:///foo.png), hand;") is "cursor: url(file:///foo.png), pointer;"
10 Test invalid cursor rules which shouldn't parse at all.
11 PASS roundtripCssRule("cursor: url(file:///foo.png), url(file:///foo2.png);") is ""
12 PASS successfullyParsed is true
14 TEST COMPLETE