-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added 2 active-selection-* tests (#24714)
* 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
Showing
4 changed files
with
208 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.