| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 iframe { | 5 iframe { |
| 6 height: 150px; | 6 height: 150px; |
| 7 width: 150px; | 7 width: 150px; |
| 8 } | 8 } |
| 9 </style> | 9 </style> |
| 10 <script> | 10 <script> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 } | 23 } |
| 24 window.addEventListener("load", doTest, false); | 24 window.addEventListener("load", doTest, false); |
| 25 </script> | 25 </script> |
| 26 </head> | 26 </head> |
| 27 <body> | 27 <body> |
| 28 <iframe id="scrollable-iframe" src="resources/subframe.html" style="width: 100
px; height: 100px"></iframe> | 28 <iframe id="scrollable-iframe" src="resources/subframe.html" style="width: 100
px; height: 100px"></iframe> |
| 29 <iframe id="non-scrollable-iframe" src="resources/subframe.html" style="width:
2000px; height: 2000px"></iframe> | 29 <iframe id="non-scrollable-iframe" src="resources/subframe.html" style="width:
2000px; height: 2000px"></iframe> |
| 30 <pre id="result"></pre> | 30 <pre id="result"></pre> |
| 31 </body> | 31 </body> |
| 32 </html> | 32 </html> |
| OLD | NEW |