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

Side by Side Diff: Source/web/tests/data/button.html

Issue 911083002: Carry out a resize even if no layout has been performed. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added comment to unit test Created 5 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
« Source/core/page/Page.cpp ('K') | « Source/web/tests/WebFrameTest.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 function changeText(id, newText) {
6 var node = document.getElementById(id);
7 node.childNodes[0].nodeValue = newText;
8 }
9 </script>
10
11 <meta name='viewport' content='width=device-width'/>
12 <style>
13 body {
14 margin: 0px;
15 }
16 </style>
17 </head>
18
19 <body>
20 <button type="button" id="tap_button" onclick="changeText('tap_button', 'updat edValue')" style="width:100px;height:100px">oldValue</button>
21 </body>
22
23 </html>
24
OLDNEW
« Source/core/page/Page.cpp ('K') | « Source/web/tests/WebFrameTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698