| 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..61f844f94af8616c895310b21ba1452adb146ba3
|
| --- /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>
|
|
|