Chromium Code Reviews| 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> |