| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 | 3 |
| 4 <style> | 4 <style> |
| 5 #modifyRule { | 5 #modifyRule { |
| 6 box-sizing: border-box; | 6 box-sizing: border-box; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #modifyRule { | 9 #modifyRule { |
| 10 height: 100%; | 10 height: 100%; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 <style> | 28 <style> |
| 29 #removeRule { | 29 #removeRule { |
| 30 box-sizing: border-box; | 30 box-sizing: border-box; |
| 31 } | 31 } |
| 32 | 32 |
| 33 #removeRule { | 33 #removeRule { |
| 34 width: 100%; | 34 width: 100%; |
| 35 } | 35 } |
| 36 </style> | 36 </style> |
| 37 | 37 |
| 38 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto
r-protocol-test.js"></script> | 38 <script type="text/javascript" src="../../http/tests/inspector-protocol/resource
s/inspector-protocol-test.js"></script> |
| 39 <script type="text/javascript" src="../../http/tests/inspector-protocol/css-prot
ocol-test.js"></script> | 39 <script type="text/javascript" src="../resources/css-protocol-test.js"></script> |
| 40 <script type="text/javascript" src="../../http/tests/inspector-protocol/dom-prot
ocol-test.js"></script> | 40 <script type="text/javascript" src="../resources/dom-protocol-test.js"></script> |
| 41 <script type="text/javascript"> | 41 <script type="text/javascript"> |
| 42 | 42 |
| 43 function test() | 43 function test() |
| 44 { | 44 { |
| 45 var documentNodeId; | 45 var documentNodeId; |
| 46 | 46 |
| 47 InspectorTest.requestDocumentNodeId(onDocumentNodeId); | 47 InspectorTest.requestDocumentNodeId(onDocumentNodeId); |
| 48 | 48 |
| 49 function onDocumentNodeId(nodeId) | 49 function onDocumentNodeId(nodeId) |
| 50 { | 50 { |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 | 167 |
| 168 </script> | 168 </script> |
| 169 </head> | 169 </head> |
| 170 <body onload="runTest();"> | 170 <body onload="runTest();"> |
| 171 <p>The test verifies CSS.getMatchedStylesForNode when used concurrently with the
CSSOM modifications.</p> | 171 <p>The test verifies CSS.getMatchedStylesForNode when used concurrently with the
CSSOM modifications.</p> |
| 172 <article id="modifyRule"></article> | 172 <article id="modifyRule"></article> |
| 173 <article id="insertRule"></article> | 173 <article id="insertRule"></article> |
| 174 <article id="removeRule"></article> | 174 <article id="removeRule"></article> |
| 175 </body> | 175 </body> |
| 176 </html> | 176 </html> |
| OLD | NEW |