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

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 for tests + merge blink/cr changes. 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 id="content"></div>
7 <script>
8 var marginWidth = document.body.getAttribute('marginwidth') || 0;
9 var marginHeight = document.body.getAttribute('marginheight') || 0;
10 document.querySelector('#content').innerText = marginWidth + '/' + marginHeigh t;
11 </script>
12 </body>
13 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698