Index: content/test/data/textinput/page_with_input_field_and_iframe.html |
diff --git a/content/test/data/textinput/page_with_input_field_and_iframe.html b/content/test/data/textinput/page_with_input_field_and_iframe.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9c070ac321ce1ceaeb29141eec77c48e515f7f46 |
--- /dev/null |
+++ b/content/test/data/textinput/page_with_input_field_and_iframe.html |
@@ -0,0 +1,16 @@ |
+<!DOCTYPE html> |
+<html> |
+<head> |
+ <title> An Input Field and An Iframe </title> |
+</head> |
+<body> |
+ <input type="text" style="width: 100%; height: 30px; left: 0px; top: 0px; position: fixed;"/> |
+ <iframe style="width: 100%; left: 0px; height: auto;"></iframe> |
+</body> |
+<script> |
+ window.addEventListener('load', function() { |
+ document.querySelector('input').value = window.location; |
+ }); |
+</script> |
+ |
+</html> |