Index: third_party/WebKit/LayoutTests/printing/page-height-zero.html |
diff --git a/third_party/WebKit/LayoutTests/printing/page-height-zero.html b/third_party/WebKit/LayoutTests/printing/page-height-zero.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8ac0f39591058fbab5c0a0173dcb38eee8dc55b1 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/printing/page-height-zero.html |
@@ -0,0 +1,19 @@ |
+<!DOCTYPE html> |
+<script src="../resources/js-test.js"></script> |
+<style> |
+ @media print { |
+ /* Need something to trigger multicol layout when entering print mode, |
+ to trigger the original crash bug (division by zero). */ |
+ #multicol { width: 50%; } |
+ } |
+</style> |
+<div id="multicol" style="-webkit-columns:2;"> </div> |
+<script> |
+ description("Test that an exception is thrown when attempting to set zero page height"); |
+ if (window.internals) { |
+ shouldThrow("internals.numberOfPages(100, 0)"); |
+ shouldThrow("internals.pageNumber(document.body, 100, 0)"); |
+ } else { |
+ testFailed("This test requires window.internals"); |
+ } |
+</script> |