| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |