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

Side by Side Diff: LayoutTests/fast/forms/text/text-padding-dynamic-change.html

Issue 12039074: Merge 140721 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1393/
Patch Set: Created 7 years, 11 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 <body>
3 <input id=text1 style="box-sizing:border-box; width:100px; text-align:right;" va lue="Hello world">
4 <input id=text2 style="box-sizing:border-box; width:100px; text-align:right;" pl aceholder="Hello world">
5 <input id=text3 style="box-sizing:border-box; width:100px; text-align:right;" va lue="Hello world">
6 <input id=text4 style="box-sizing:border-box; width:100px; text-align:right;" pl aceholder="Hello world">
7 <script>
8 document.body.offsetLeft;
9 document.getElementById('text1').style.paddingLeft = '40px';
10 document.getElementById('text2').style.paddingLeft = '40px';
11 document.getElementById('text3').style.borderLeftWidth = '40px';
12 document.getElementById('text4').style.borderLeftWidth = '40px';
13 </script>
14 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698