Index: LayoutTests/fast/regions/selection/selecting-text-ignoring-region-vert-lr.html |
diff --git a/LayoutTests/fast/regions/selection/selecting-text-in-2-regions-vert-lr.html b/LayoutTests/fast/regions/selection/selecting-text-ignoring-region-vert-lr.html |
similarity index 51% |
copy from LayoutTests/fast/regions/selection/selecting-text-in-2-regions-vert-lr.html |
copy to LayoutTests/fast/regions/selection/selecting-text-ignoring-region-vert-lr.html |
index 3e0b5314307d6ee6aa3f8036809f77b1c01ac2cd..ac75f75491208b79e067174e4ecb788f9866ee78 100644 |
--- a/LayoutTests/fast/regions/selection/selecting-text-in-2-regions-vert-lr.html |
+++ b/LayoutTests/fast/regions/selection/selecting-text-ignoring-region-vert-lr.html |
@@ -7,30 +7,36 @@ |
html { |
-webkit-writing-mode: vertical-lr; |
} |
+ |
+ body { |
+ margin-left: 0; |
+ } |
</style> |
<script> |
onMouseUpLogSelection("selected-content"); |
</script> |
</head> |
-<body onload="selectContentByIdsVertical('word1', 'word2');" style="margin-left: 0;"> |
+<body onload="selectContentByIdsVertical('word1', 'word2');"> |
<div class="flowArticle"> |
inside region inside region inside region inside region |
- <span id="word1" class="token">word1</span> |
- inside region inside region inside region inside region |
- <span class="break"></span> |
- inside region inside region inside region inside region |
- <span id="word2" class="token">word2</span> |
inside region inside region inside region inside region |
</div> |
- <div class="regionArticle greyBigBoxVertical"></div> |
- <div class="bigBoxVertical"> |
+ <div class="bigBoxVertical float"> |
outside region outside region outside region outside region |
+ <span id="word1" class="token">word1</span> |
outside region outside region outside region outside region |
</div> |
+ <div class="clear"></div> |
<div class="regionArticle greyBigBoxVertical"></div> |
+ <div class="bigBoxVertical float"> |
+ outside region outside region outside region outside region |
+ <span id="word2" class="token">word2</span> |
+ outside region outside region outside region outside region |
+ </div> |
+ <div class="clear"></div> |
<div class="descriptionVertical"> |
- <h1><a href="https://bugs.webkit.org/show_bug.cgi?id=121841">Bug #121841 - [CSS Regions] Layout Test for selecting text in 2 regions</a></h1> |
- <p>This test checks the selection in 2 regions. If you select from <span class="token">word1</span> to <span class="token">word2</span> you will see that "outside region" text is not highlighted and not included in the selected content.</p> |
+ <h1><a href="https://bugs.webkit.org/show_bug.cgi?id=122353">Bug #122353 - [CSS Regions] Layout Test for selecting text ignoring region content</a></h1> |
+ <p>This test checks the selection in 2 text wrapping a region. If you select from <span class="token">word1</span> to <span class="token">word2</span> you will see that "inside region" text is not highlighted and not included in the selected content (because of the content of the region is before the "outside region" element in the DOM).</p> |
<dl> |
<dt>Selected content:</dt> |
<dd id="selected-content"></dd> |