OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 | 3 |
4 <style> | 4 <style> |
5 #test { | 5 #test { |
6 color: red; | 6 color: red; |
7 } | 7 } |
8 | 8 |
9 #test { | 9 #test { |
10 color: green; | 10 color: green; |
(...skipping 21 matching lines...) Expand all Loading... |
32 | 32 |
33 #test { | 33 #test { |
34 width: 50%; | 34 width: 50%; |
35 } | 35 } |
36 | 36 |
37 #test { | 37 #test { |
38 width: 60%; | 38 width: 60%; |
39 } | 39 } |
40 </style> | 40 </style> |
41 | 41 |
42 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto
r-protocol-test.js"></script> | 42 <script type="text/javascript" src="../../http/tests/inspector-protocol/resource
s/inspector-protocol-test.js"></script> |
43 <script type="text/javascript" src="../../http/tests/inspector-protocol/css-prot
ocol-test.js"></script> | 43 <script type="text/javascript" src="../resources/css-protocol-test.js"></script> |
44 <script type="text/javascript" src="../../http/tests/inspector-protocol/dom-prot
ocol-test.js"></script> | 44 <script type="text/javascript" src="../resources/dom-protocol-test.js"></script> |
45 <script type="text/javascript"> | 45 <script type="text/javascript"> |
46 | 46 |
47 function test() | 47 function test() |
48 { | 48 { |
49 var documentNodeId; | 49 var documentNodeId; |
50 | 50 |
51 InspectorTest.requestDocumentNodeId(onDocumentNodeId); | 51 InspectorTest.requestDocumentNodeId(onDocumentNodeId); |
52 | 52 |
53 function onDocumentNodeId(nodeId) | 53 function onDocumentNodeId(nodeId) |
54 { | 54 { |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 ]; | 103 ]; |
104 } | 104 } |
105 | 105 |
106 </script> | 106 </script> |
107 </head> | 107 </head> |
108 <body onload="runTest();"> | 108 <body onload="runTest();"> |
109 <p>The test verifies CSS.getMatchedStylesForNode when used concurrently with mul
tiple CSSOM modifications.</p> | 109 <p>The test verifies CSS.getMatchedStylesForNode when used concurrently with mul
tiple CSSOM modifications.</p> |
110 <article id="test"></article> | 110 <article id="test"></article> |
111 </body> | 111 </body> |
112 </html> | 112 </html> |
OLD | NEW |