Index: third_party/WebKit/LayoutTests/fast/multicol/input-type-number.html |
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/input-type-number.html b/third_party/WebKit/LayoutTests/fast/multicol/input-type-number.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2249efe61f0019a2d7e7f4e26f54acb19fa30196 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/multicol/input-type-number.html |
@@ -0,0 +1,14 @@ |
+<!DOCTYPE html> |
+<script src="../../resources/ahem.js"></script> |
+<p>INPUT elements are typically layout roots, so they may be laid out independently from the rest of |
+ the tree. Test that multicol doesn't mess up this.</p> |
+<p>Below you should see a hotpink <em>square</em>.</p> |
+<div style="position:absolute; top:121px; width:500px; -webkit-column-count:2; column-fill:auto; height:100px;"> |
+ <input id="elm" type="number" value="666" style="width:200px; height:80px; font:80px/1 Ahem; border:none; color:hotpink;"> |
+</div> |
+<script> |
+ onload = function() { |
+ document.body.offsetTop; |
+ document.getElementById("elm").value = "7"; |
+ } |
+</script> |