Skip to content

Commit

Permalink
Added 2 active-selection-* tests (#24714)
Browse files Browse the repository at this point in the history
* Added 2 active-selection-* tests

* Added reftest-wait class to root element of active-selection-045

* Added an scrip instruction to remove class reftest-wait after script run
  • Loading branch information
TalbotG authored Jul 24, 2020
1 parent d745272 commit 2b2864e
Show file tree
Hide file tree
Showing 4 changed files with 208 additions and 0 deletions.
86 changes: 86 additions & 0 deletions css/css-pseudo/active-selection-031.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
<!DOCTYPE html>

<meta charset="UTF-8">

<title>CSS Pseudo-Elements Test: active selection and vertical writing-modes</title>

<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<link rel="help" href="https://www.w3.org/TR/css-pseudo-4/#highlight-styling">
<link rel="match" href="reference/active-selection-031-ref.html">

<meta content="" name="flags">

<style>
div > div
{
color: red;
float: left;
font-size: 48px;
margin-left: 16px;
}

div.vrl
{
writing-mode: vertical-rl;
}

div.vlr
{
writing-mode: vertical-lr;
}

div.mixed
{
text-orientation: mixed;
}

div.sideways
{
text-orientation: sideways;
}

div.upright
{
text-orientation: upright;
}

div::selection
{
background-color: yellow;
color: green;
}
</style>

<script>
function startTest()
{
var targetRange = document.createRange();
/* We first create an empty range */

targetRange.selectNodeContents(document.getElementById("test"));
/* Then we set the range boundaries to the contents of div#test */

window.getSelection().addRange(targetRange);
/* Finally, we now add such range of content into a selection */
}
</script>

<body onload="startTest();">

<p>Test passes if each glyph of the 6 "Selected Text" is green and if there is <strong>no red</strong>.

<div id="test">

<div class="vrl mixed">Selected Text</div>

<div class="vrl sideways">Selected Text</div>

<div class="vrl upright">Selected Text</div>

<div class="vlr mixed">Selected Text</div>

<div class="vlr sideways">Selected Text</div>

<div class="vlr upright">Selected Text</div>

</div>
65 changes: 65 additions & 0 deletions css/css-pseudo/active-selection-045.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<!DOCTYPE html>

<html class="reftest-wait">

<meta charset="UTF-8">

<title>CSS Pseudo-Elements Test: active selection and image</title>

<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<link rel="help" href="https://www.w3.org/TR/css-pseudo-4/#highlight-painting">
<link rel="match" href="../reference/ref-nothing-below.xht">

<meta content="" name="flags">
<meta name="assert" content="This test checks that the associated overlay for image must not cover (or leak) outside the image's content box.">

<style>
/*
Chromium 80+ highlights the
top of line box minus
content box and the bottom
of line box minus content
box.
Firefox 72+ consistently highlights
only the image content box itself.
*/

div
{
font-size: 300px;
}

img::selection
{
background-color: red;
}

span#masking
{
background-color: white;
display: inline-block;
height: 100px;
position: relative;
right: 100px;
width: 100px;
}
</style>

<script>
function startTest()
{
var targetRange = document.createRange();
/* We first create an empty range */
targetRange.selectNodeContents(document.getElementById("test"));
/* Then we set the range boundaries to the children of div#test */
window.getSelection().addRange(targetRange);
/* Finally, we now select such range of content */
document.documentElement.className = "";
}
</script>

<body onload="startTest();">

<p>Test passes if there is nothing below.

<div id="test"><img src="support/100x100-red.png" alt="Image download support must be enabled"><span id="masking"></span></div>
57 changes: 57 additions & 0 deletions css/css-pseudo/reference/active-selection-031-ref.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<!DOCTYPE html>

<meta charset="UTF-8">

<title>CSS Reftest Reference</title>

<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">

<style>
div
{
background-color: yellow;
color: green;
float: left;
font-size: 48px;
margin-left: 16px;
}

div.vrl
{
writing-mode: vertical-rl;
}

div.vlr
{
writing-mode: vertical-lr;
}

div.mixed
{
text-orientation: mixed;
}

div.sideways
{
text-orientation: sideways;
}

div.upright
{
text-orientation: upright;
}
</style>

<p>Test passes if each glyph of the 6 "Selected Text" is green and if there is <strong>no red</strong>.

<div class="vrl mixed">Selected Text</div>

<div class="vrl sideways">Selected Text</div>

<div class="vrl upright">Selected Text</div>

<div class="vlr mixed">Selected Text</div>

<div class="vlr sideways">Selected Text</div>

<div class="vlr upright">Selected Text</div>
Binary file added css/css-pseudo/support/100x100-red.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2b2864e

Please sign in to comment.