Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/css/cssom-modify-rule-and-get-rule-list.html

Issue 2942573003: [DevTools] New harness for inspector-protocol layout tests (Closed)
Patch Set: Protocol -> dp Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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%;
11 } 11 }
12 12
13 #modifyRule { 13 #modifyRule {
14 width: 100%; 14 width: 100%;
15 } 15 }
16 </style> 16 </style>
17 17
18 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto r-protocol-test.js"></script> 18 <script type="text/javascript" src="../../http/tests/inspector-protocol/resource s/inspector-protocol-test.js"></script>
19 <script type="text/javascript" src="../../http/tests/inspector-protocol/css-prot ocol-test.js"></script> 19 <script type="text/javascript" src="../resources/css-protocol-test.js"></script>
20 <script type="text/javascript" src="../../http/tests/inspector-protocol/dom-prot ocol-test.js"></script> 20 <script type="text/javascript" src="../resources/dom-protocol-test.js"></script>
21 <script type="text/javascript"> 21 <script type="text/javascript">
22 22
23 function test() 23 function test()
24 { 24 {
25 var documentNodeId; 25 var documentNodeId;
26 26
27 InspectorTest.requestDocumentNodeId(onDocumentNodeId); 27 InspectorTest.requestDocumentNodeId(onDocumentNodeId);
28 28
29 function onDocumentNodeId(nodeId) 29 function onDocumentNodeId(nodeId)
30 { 30 {
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 } 67 }
68 } 68 }
69 69
70 </script> 70 </script>
71 </head> 71 </head>
72 <body onload="runTest();"> 72 <body onload="runTest();">
73 <p>The test verifies that CSS.stopRuleUsageTracking doesn't crash when used conc urrently with the CSSOM modifications.</p> 73 <p>The test verifies that CSS.stopRuleUsageTracking doesn't crash when used conc urrently with the CSSOM modifications.</p>
74 <article id="modifyRule"></article> 74 <article id="modifyRule"></article>
75 </body> 75 </body>
76 </html> 76 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698