| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../../fast/js/resources/js-test-pre.js"></script> |
| 5 <style> | 5 <style> |
| 6 div.flexbox { | 6 div.flexbox { |
| 7 display: -webkit-flex; | 7 display: -webkit-flex; |
| 8 } | 8 } |
| 9 div.overflow-auto { | 9 div.overflow-auto { |
| 10 overflow: auto; | 10 overflow: auto; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 </head> | 28 </head> |
| 29 <body onload="runTest()"> | 29 <body onload="runTest()"> |
| 30 <div class="container flexbox"> | 30 <div class="container flexbox"> |
| 31 <div class="flex overflow-auto flexbox"> | 31 <div class="flex overflow-auto flexbox"> |
| 32 <div style="height: 400px"></div> | 32 <div style="height: 400px"></div> |
| 33 </div> | 33 </div> |
| 34 <div id="sidebar">foo</div> | 34 <div id="sidebar">foo</div> |
| 35 </div> | 35 </div> |
| 36 <div id="console"></div> | 36 <div id="console"></div> |
| 37 <script src="../fast/js/resources/js-test-post.js"></script> | |
| 38 </body> | 37 </body> |
| 39 </html> | 38 </html> |
| OLD | NEW |