Index: LayoutTests/fast/forms/positioned-input-text-cursor-expected.html |
diff --git a/LayoutTests/fast/forms/positioned-input-text-cursor-expected.html b/LayoutTests/fast/forms/positioned-input-text-cursor-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4b95676fde3e5b533fb7a3bab3ef1b6b35dcd36d |
--- /dev/null |
+++ b/LayoutTests/fast/forms/positioned-input-text-cursor-expected.html |
@@ -0,0 +1,15 @@ |
+<!DOCTYPE html> |
+<style> |
+input { |
+ position: absolute; |
+ top: 0; |
+ left: 30px; |
+ height: 50px; |
+ width: 200px; |
+} |
+</style> |
+ |
+<input id="input" type="text"> |
+<script> |
+document.getElementById('input').focus(); |
+</script> |