| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 Test passes if it does not crash. | 2 Test passes if it does not crash. |
| 3 <iframe id="test"></iframe> | 3 <iframe id="test"></iframe> |
| 4 <script> | 4 <script> |
| 5 if (window.layoutTestController) | 5 if (window.layoutTestController) |
| 6 layoutTestController.dumpAsText(); | 6 layoutTestController.dumpAsText(); |
| 7 | 7 |
| 8 var iframe = document.getElementById("test"); | 8 var iframe = document.getElementById("test"); |
| 9 var obj = iframe.contentWindow.matchMedia("(min-width: 0em)"); | 9 var obj = iframe.contentWindow.matchMedia("(min-width: 0em)"); |
| 10 </script> | 10 </script> |
| 11 </html> | 11 </html> |
| 12 | 12 |
| OLD | NEW |