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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/frames/script-modify-iframe-attr.html

Issue 2507023002: Support script modify iframe scrolling, marginWidth and marginHeight attr (Closed)
Patch Set: alexmos@ comment#20 addressed. but layouttest still not working with flag Created 4 years 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>
alexmos 2016/11/22 05:13:10 Perhaps this should go under http/tests/misc inste
2
3 <script>
4 window.onload = () => {
5 var ifr = document.getElementById('ifr');
6 ifr.scrolling = 'no';
7 ifr.marginWidth = '50';
8 ifr.marginHeight = '100';
9 };
10 </script>
11
12 <iframe id="ifr" scrolling="yes" style="width:200px;height:200px;"
13 src="http://localhost:8000/frames/resources/subframe.html">
14 </iframe>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698