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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/css/cssom-matching-rules-multiple.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 #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
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698