mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Update web-platform-tests to revision b'ceb972b009e1b43c589dce3f36b050121493d2e0'
This commit is contained in:
parent
88ff668147
commit
3c4c34479c
196 changed files with 5979 additions and 848 deletions
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Text Test: text-transform uppercase Greek acute diaeresis iota and selection</title>
|
||||
<link rel="author" href="mailto:xiaochengh@chromium.org">
|
||||
<style>
|
||||
#target {
|
||||
color: white;
|
||||
background: red;
|
||||
}
|
||||
#target::selection {
|
||||
background: green;
|
||||
}
|
||||
</style>
|
||||
|
||||
<p>The test passes if you see red below (by selecting the first letter only).</p>
|
||||
|
||||
<span id="target" lang="el">ΪΡ</span>
|
||||
|
||||
<script>
|
||||
window.getSelection().setBaseAndExtent(target.firstChild, 0, target.firstChild, 2);
|
||||
</script>
|
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Text Test: text-transform uppercase Greek acute diaeresis iota and selection</title>
|
||||
<link rel="author" href="mailto:xiaochengh@chromium.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text/#propdef-text-transform">
|
||||
<link rel="match" href="reference/text-transform-upperlower-106-ref.html">
|
||||
<meta name="assert" content="text-transform: uppercase will uppercase the Greek acute diaeresis iota by removing acute, and the rendered character is selectable.">
|
||||
<style>
|
||||
#target {
|
||||
text-transform: uppercase;
|
||||
color: white;
|
||||
background: red;
|
||||
}
|
||||
#target::selection {
|
||||
background: green;
|
||||
}
|
||||
</style>
|
||||
|
||||
<p>The test passes if you see red below (by selecting the first letter only).</p>
|
||||
|
||||
<span id="target" lang="el">Ϊ́Ρ</span>
|
||||
|
||||
<script>
|
||||
window.getSelection().setBaseAndExtent(target.firstChild, 0, target.firstChild, 3);
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue