| <title>Test for Bug 48984 - [Chromium] @media print crash due to paged media support</title> |
| Click the print button and see if Chromium crashes. |
| <input type="button" value="print" onclick="testManually()"/> |
| function testManually() { |
| document.documentElement.style.display = "none"; |
| // The test passes if the following line doesn't cause a crash. |
| internals.pageSizeAndMarginsInPixels(0, 100, 200, 1, 2, 3, 4); |
| document.getElementById("output").innerHTML = "PASS"; |
| // Remove the display: none; rule. Otherwise, DumpRenderTree dumps weird stuff. |
| document.styleSheets[0].removeRule(0); |