Update web-platform-tests and CSS tests.
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
|
@ -0,0 +1,39 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Basic User Interface Test: caret-color animation</title>
|
||||
<link href="mailto:florian@rivoal.net" rel="author" title="Florian Rivoal" />
|
||||
<link href="http://www.w3.org/TR/css3-ui/#caret-color" rel="help" />
|
||||
<link href="https://drafts.csswg.org/css-animations-1/#animation" rel="help" />
|
||||
<meta content="interact animated" name="flags" />
|
||||
<meta content="Test checks that caret-color is animatable as a color" name="assert" />
|
||||
<style>
|
||||
textarea {
|
||||
font-size: 3em;
|
||||
font-weight: bold;
|
||||
width: 10em;
|
||||
padding: 10px;
|
||||
background: black; color: white; /* the color of a thin object like the caret is easier to see on a black background. */
|
||||
|
||||
caret-color: red;
|
||||
animation: caret-many-colors 5s linear alternate infinite;
|
||||
}
|
||||
@keyframes caret-many-colors {
|
||||
0% { caret-color: lime; }
|
||||
20% { caret-color: gray; }
|
||||
40% { caret-color: cyan; }
|
||||
60% { caret-color: pink; }
|
||||
80% { caret-color: blue; }
|
||||
100% { caret-color: brown; }
|
||||
}
|
||||
</style>
|
||||
</head><body>
|
||||
<p>Test passes if, when the text area below is focused for editing, the text insertion caret continuously changes colors.</p>
|
||||
<p>The shape of the caret, and whether it flashes, are not part of the test.</p>
|
||||
<textarea id="test"></textarea>
|
||||
<script>
|
||||
window.onload = function() {
|
||||
document.getElementById("test").focus();
|
||||
}
|
||||
</script>
|
||||
|
||||
</body></html>
|
|
@ -0,0 +1,34 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
||||
<title>CSS Basic User Interface Test: Default caret-color test animation</title>
|
||||
<link href="mailto:rego@igalia.com" rel="author" title="Manuel Rego Casasnovas" />
|
||||
<link href="http://www.w3.org/TR/css3-ui/#caret-color" rel="help" />
|
||||
<link href="https://www.w3.org/TR/css3-animations/#animation-shorthand-property" rel="help" />
|
||||
<link href="https://www.w3.org/TR/css3-color/#color0" rel="help" />
|
||||
<meta content="Test checks that the default value for caret-color property, which is 'auto', is not interpolable." name="assert" />
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<style>
|
||||
@keyframes caret-color-to-lime {
|
||||
to { caret-color: lime; }
|
||||
}
|
||||
|
||||
#textarea {
|
||||
color: magenta;
|
||||
animation: caret-color-to-lime 2s -1s paused;
|
||||
}
|
||||
</style>
|
||||
</head><body>
|
||||
<textarea id="textarea"></textarea>
|
||||
<div id="log"></div>
|
||||
|
||||
<script>
|
||||
test(
|
||||
function(){
|
||||
var textarea = document.getElementById("textarea");
|
||||
assert_equals(getComputedStyle(textarea).caretColor, 'rgb(0, 255, 0)');
|
||||
}, "Default caret-color is not interpolable");
|
||||
</script>
|
||||
|
||||
|
||||
</body></html>
|
|
@ -13,7 +13,7 @@
|
|||
<body>
|
||||
|
||||
<h1>CSS Animations Module Level 1 CR Test Suite</h1>
|
||||
<h2>Keyframes (66 tests)</h2>
|
||||
<h2>Keyframes (68 tests)</h2>
|
||||
<table width="100%">
|
||||
<col id="test-column"></col>
|
||||
<col id="refs-column"></col>
|
||||
|
@ -2208,10 +2208,21 @@
|
|||
<tr><th colspan="4" scope="rowgroup">
|
||||
<a href="#s4.10">+</a>
|
||||
<a href="https://www.w3.org/TR/css3-animations/#animation-shorthand-property">4.10 The ‘animation’ Shorthand Property</a></th></tr>
|
||||
<!-- 0 tests -->
|
||||
<!-- 1 tests -->
|
||||
<tr id="caret-color-021-4.10" class="script">
|
||||
<td>
|
||||
<a href="caret-color-021.xht">caret-color-021</a></td>
|
||||
<td></td>
|
||||
<td><abbr class="script" title="Executes tests in script">Script</abbr></td>
|
||||
<td>Default caret-color test animation
|
||||
<ul class="assert">
|
||||
<li>Test checks that the default value for caret-color property, which is 'auto', is not interpolable.</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tbody id="s4.10.#animation">
|
||||
<!-- 3 tests -->
|
||||
<!-- 4 tests -->
|
||||
<tr id="animation-shorthand-001-4.10.#animation" class="primary animated">
|
||||
<td><strong>
|
||||
<a href="animation-shorthand-001.xht">animation-shorthand-001</a></strong></td>
|
||||
|
@ -2245,6 +2256,17 @@
|
|||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="caret-color-008-4.10.#animation" class="animated interact">
|
||||
<td>
|
||||
<a href="caret-color-008.xht">caret-color-008</a></td>
|
||||
<td></td>
|
||||
<td><abbr class="animated" title="Animated test">Animated</abbr><abbr class="interact" title="Requires user interaction">Interact</abbr></td>
|
||||
<td>caret-color animation
|
||||
<ul class="assert">
|
||||
<li>Test checks that caret-color is animatable as a color</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tbody id="s4.10.#single-animation">
|
||||
<!-- 0 tests -->
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
PngSuite
|
||||
--------
|
||||
|
||||
Permission to use, copy, modify and distribute these images for any
|
||||
purpose and without fee is hereby granted.
|
||||
|
||||
|
||||
(c) Willem van Schaik, 1996, 2011
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
PNGSUITE
|
||||
----------------
|
||||
|
||||
testset for PNG-(de)coders
|
||||
created by Willem van Schaik
|
||||
------------------------------------
|
||||
|
||||
This is a collection of graphics images created to test the png applications
|
||||
like viewers, converters and editors. All (as far as that is possible)
|
||||
formats supported by the PNG standard are represented.
|
||||
|
||||
The suite consists of the following files:
|
||||
|
||||
- PngSuite.README - this file
|
||||
- PngSuite.LICENSE - the PngSuite is freeware
|
||||
- PngSuite.png - image with PngSuite logo
|
||||
- PngSuite.tgz - archive of all PNG testfiles
|
||||
- PngSuite.zip - same in .zip format for PCs
|
||||
|
||||
|
||||
--------
|
||||
(c) Willem van Schaik
|
||||
willem@schaik.com
|
||||
Calgary, April 2011
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 217 B |
After Width: | Height: | Size: 154 B |
After Width: | Height: | Size: 247 B |
After Width: | Height: | Size: 254 B |
After Width: | Height: | Size: 299 B |
After Width: | Height: | Size: 315 B |
After Width: | Height: | Size: 595 B |
After Width: | Height: | Size: 132 B |
After Width: | Height: | Size: 193 B |
After Width: | Height: | Size: 327 B |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 214 B |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 361 B |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 164 B |
After Width: | Height: | Size: 104 B |
After Width: | Height: | Size: 145 B |
After Width: | Height: | Size: 138 B |
After Width: | Height: | Size: 167 B |
After Width: | Height: | Size: 145 B |
After Width: | Height: | Size: 302 B |
After Width: | Height: | Size: 112 B |
After Width: | Height: | Size: 146 B |
After Width: | Height: | Size: 216 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 126 B |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 184 B |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 214 B |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 184 B |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 140 B |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 202 B |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 404 B |
After Width: | Height: | Size: 344 B |
After Width: | Height: | Size: 232 B |
After Width: | Height: | Size: 724 B |
After Width: | Height: | Size: 258 B |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 292 B |
After Width: | Height: | Size: 292 B |
After Width: | Height: | Size: 292 B |
After Width: | Height: | Size: 214 B |
After Width: | Height: | Size: 259 B |
After Width: | Height: | Size: 186 B |
After Width: | Height: | Size: 271 B |
After Width: | Height: | Size: 149 B |
After Width: | Height: | Size: 256 B |
After Width: | Height: | Size: 273 B |
After Width: | Height: | Size: 792 B |
After Width: | Height: | Size: 742 B |
After Width: | Height: | Size: 716 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 941 B |
After Width: | Height: | Size: 753 B |
After Width: | Height: | Size: 319 B |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 321 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 355 B |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 389 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 269 B |
After Width: | Height: | Size: 985 B |
After Width: | Height: | Size: 426 B |
After Width: | Height: | Size: 345 B |
After Width: | Height: | Size: 370 B |
After Width: | Height: | Size: 214 B |
After Width: | Height: | Size: 363 B |
After Width: | Height: | Size: 377 B |
After Width: | Height: | Size: 219 B |
After Width: | Height: | Size: 339 B |
After Width: | Height: | Size: 350 B |
After Width: | Height: | Size: 206 B |
After Width: | Height: | Size: 321 B |
After Width: | Height: | Size: 340 B |
After Width: | Height: | Size: 207 B |
After Width: | Height: | Size: 262 B |
After Width: | Height: | Size: 285 B |
After Width: | Height: | Size: 214 B |
After Width: | Height: | Size: 383 B |
After Width: | Height: | Size: 405 B |
After Width: | Height: | Size: 215 B |
After Width: | Height: | Size: 167 B |
After Width: | Height: | Size: 302 B |