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

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

Issue 2719713002: Simplify whitespace layout object creation.
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/text/whitespace-text-nodes-float.html
diff --git a/third_party/WebKit/LayoutTests/fast/text/whitespace-text-nodes-float.html b/third_party/WebKit/LayoutTests/fast/text/whitespace-text-nodes-float.html
new file mode 100644
index 0000000000000000000000000000000000000000..896dad6c5493b287f04f1cdb7446396f77da4b12
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/text/whitespace-text-nodes-float.html
@@ -0,0 +1,13 @@
+<!doctype html>
+<style>
+ .f {
+ float: left;
+ }
+</style>
+<p id="p"></p>
+<script>
+ window.onload = function (e) {
+ var p = document.getElementById('p');
+ 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
+ };
+</script>

Powered by Google App Engine
This is Rietveld 408576698