mirror of
https://github.com/servo/servo.git
synced 2025-08-11 16:35:33 +01:00
Update web-platform-tests to revision d047c507f134899be6f0bde7a48c630ab67fe34a
This commit is contained in:
parent
49885648e7
commit
c6de66cc49
85 changed files with 697 additions and 264 deletions
|
@ -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>
|
|
@ -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>
|
|
@ -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 not shown.
After Width: | Height: | Size: 510 B |
Loading…
Add table
Add a link
Reference in a new issue