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

Side by Side Diff: LayoutTests/fast/runin/input-text-runin.html

Issue 53373003: Remove display:run-in as per https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/_tHSX… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix test Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <head>
3 <style>
4 #el0 { -webkit-appearance: none; }
5 .c0 { display: run-in; }
6 </style>
7 </head>
8 <body><input type=text id=el0>
9 <script>
10 if (window.testRunner)
11 testRunner.dumpAsText();
12 document.body.appendChild(el0);
13 document.body.appendChild(document.createElement('div'));
14 document.body.offsetTop;
15 el0.classList.add('c0');
16 document.body.offsetTop;
17 document.body.innerHTML = 'PASS if not crashed';
18 </script>
19 </body>
OLDNEW
« no previous file with comments | « LayoutTests/fast/runin/generated4-expected.txt ('k') | LayoutTests/fast/runin/input-text-runin-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698