| OLD | NEW |
| (Empty) |
| 1 <html> | |
| 2 <head> | |
| 3 <style> | |
| 4 #inspected{ | |
| 5 } | |
| 6 | |
| 7 #InSpEcTeD { | |
| 8 } | |
| 9 | |
| 10 /* */#inspected/* */ { | |
| 11 } | |
| 12 | |
| 13 /* | |
| 14 */ FOO/*Single-line 1*/ bAr,/* Single-line 2*/#inspected/* | |
| 15 Multiline comment | |
| 16 */ ,MOO>BAR, /*1*/htML /*2 | |
| 17 */div/*3*/,/**/Foo~/**C*/Moo,/**/MOO /* Comment | |
| 18 */ | |
| 19 { | |
| 20 color: green; | |
| 21 } | |
| 22 | |
| 23 </style> | |
| 24 <script src="../../../http/tests/inspector/inspector-test.js"></script> | |
| 25 <script src="../../../http/tests/inspector/elements-test.js"></script> | |
| 26 <script> | |
| 27 | |
| 28 function test() | |
| 29 { | |
| 30 InspectorTest.selectNodeAndWaitForStyles("inspected", step1); | |
| 31 | |
| 32 function step1() | |
| 33 { | |
| 34 InspectorTest.dumpSelectedElementStyles(true); | |
| 35 InspectorTest.completeTest(); | |
| 36 } | |
| 37 } | |
| 38 | |
| 39 </script> | |
| 40 </head> | |
| 41 | |
| 42 <body onload="runTest()"> | |
| 43 <p> | |
| 44 Tests representation of selector lists in the protocol. <a href="https://bugs.we
bkit.org/show_bug.cgi?id=103118">Bug 103118</a>. | |
| 45 </p> | |
| 46 | |
| 47 <div id="inspected">Text</div> | |
| 48 | |
| 49 </body> | |
| 50 </html> | |
| OLD | NEW |