Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / console / command-line-api-expected.txt
blobb82911a895a87ab17c6891ee2b2aa20101ba9c8c
1 Tests that command line api works.
4 String($0)
5 "[object HTMLParagraphElement]"
7 $3
8 undefined
10 String(keys([3,4]))
11 "0,1"
13 String(values([3,4]))
14 "3,4"
16 String($('#foo'))
17 "[object HTMLParagraphElement]"
19 String($('#foo', document.body))
20 "[object HTMLParagraphElement]"
22 String($('#foo', 'non-node'))
23 "[object HTMLParagraphElement]"
25 String($('#foo', $('#bar')))
26 "null"
28 String($$('p'))
29 "[object HTMLParagraphElement],[object HTMLParagraphElement]"
31 String($$('p', document.body))
32 "[object HTMLParagraphElement],[object HTMLParagraphElement]"
34 String($('foo'))
35 "null"
37 console.assert(keys(window).indexOf('__commandLineAPI') === -1)
38 undefined