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

Side by Side 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: Addressing Comments and Fixing Compile Errors Created 4 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title> An Input Field and An Iframe </title>
5 </head>
6 <body>
7 <input type="text" style="width: 100%; height: 30px; left: 0px; top: 0px ; position: fixed;"/>
8 <iframe style="width: 100%; left: 0px; height: auto;"></iframe>
9 </body>
10 <script>
11 window.addEventListener('load', function() {
12 document.querySelector('input').value = window.location;
13 });
14 </script>
15
16 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698