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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-relayout-boundary.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 <style> 3 <style>
4 .relayout-boundary { 4 .relayout-boundary {
5 width: 200px; 5 width: 200px;
6 height: 40px; 6 height: 40px;
7 overflow: hidden; 7 overflow: hidden;
8 } 8 }
9 9
10 </style> 10 </style>
11 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto r-protocol-test.js"></script> 11 <script type="text/javascript" src="../../http/tests/inspector-protocol/resource s/inspector-protocol-test.js"></script>
12 <script type="text/javascript"> 12 <script type="text/javascript">
13 13
14 function test() 14 function test()
15 { 15 {
16 var nodeByIdAttribute = {}; 16 var nodeByIdAttribute = {};
17 var nodeById = {}; 17 var nodeById = {};
18 18
19 getDocument(); 19 getDocument();
20 20
21 function getAttribute(node, attribute) 21 function getAttribute(node, attribute)
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 <body> 128 <body>
129 <div id="outer"></div> 129 <div id="outer"></div>
130 <div class="relayout-boundary" id="boundary"> 130 <div class="relayout-boundary" id="boundary">
131 <div id="inner"></div> 131 <div id="inner"></div>
132 <div style="display: none"> 132 <div style="display: none">
133 <div id="hidden"></div> 133 <div id="hidden"></div>
134 </div> 134 </div>
135 </div> 135 </div>
136 </body> 136 </body>
137 </html> 137 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698