Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: content/test/data/textinput/page_with_input_field_and_iframe.html

Issue 1652483002: Browser Side Text Input State Tracking for OOPIF. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698