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

Side by Side Diff: third_party/WebKit/Source/web/tests/data/frame_owner_properties.html

Issue 1307013004: Propagate scrolling/marginwidth/marginheight property values to child frame. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments from Daniel Created 5 years, 2 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 </head>
5 <body>
6 <div>Some content.</div>
7 <script>
8 window.bodyMarginWidth = document.body.getAttribute('marginwidth') || '0';
9 window.bodyMarginHeight = document.body.getAttribute('marginheight') || '0';
10 </script>
11 </body>
12 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698