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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/text/whitespace-text-nodes-float.html

Issue 2719713002: Simplify whitespace layout object creation.
Patch Set: Created 3 years, 9 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 <style>
3 .f {
4 float: left;
5 }
6 </style>
7 <p id="p"></p>
8 <script>
9 window.onload = function (e) {
10 var p = document.getElementById('p');
11 p.innerHTML = 'a<span class="f">x</span> <span class="f">y</span >b';
rune 2017/02/27 10:38:06 I don't think you're guaranteed that you have gene
emilio 2017/02/27 12:09:32 This is literally a copy-pasted test case from htt
12 };
13 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698