mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision c063a8c9acc637e3bd72b719b46e6f2fb627da4a
This commit is contained in:
parent
e66ab111a6
commit
018bc3f219
140 changed files with 2806 additions and 431 deletions
|
@ -1,28 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Basic User Interface Test: appearance: button-bevel</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-ui-4/#appearance-switching">
|
||||
<meta name="assert" content="button-bevel is an alias to auto.">
|
||||
<link rel="match" href="appearance-auto-ref.html">
|
||||
<style>
|
||||
#container { width: 500px; }
|
||||
#container > * { appearance: none; appearance: button-bevel; }
|
||||
</style>
|
||||
<div id="container">
|
||||
<a>a</a>
|
||||
<button>button</button>
|
||||
<input type="text" value="input-text">
|
||||
<input type="search" value="input-search">
|
||||
<textarea>textarea</textarea>
|
||||
<input type="button" value="input-button">
|
||||
<input type="submit" value="input-submit">
|
||||
<input type="reset" value="input-reset">
|
||||
<input type="range">
|
||||
<input type="checkbox">
|
||||
<input type="radio">
|
||||
<input type="color">
|
||||
<select><option>select</option></select>
|
||||
<select multiple><option>select-multiple</option></select>
|
||||
<meter value=0.5></meter>
|
||||
<progress value=0.5></progress>
|
||||
</div>
|
|
@ -33,7 +33,7 @@
|
|||
const mediumWidth = getComputedStyle(reference).borderTopWidth; // e.g. 3px
|
||||
const currentColor = getComputedStyle(reference).color;
|
||||
|
||||
assert_not_inherited('appearance', 'auto', 'none');
|
||||
assert_not_inherited('appearance', 'none', 'auto');
|
||||
assert_inherited('caret-color', currentColor, 'rgba(42, 53, 64, 0.75)');
|
||||
assert_inherited('caret-shape', 'auto', 'bar');
|
||||
assert_inherited('cursor', 'auto', 'pointer');
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<title>Tests that a paint clip, clips an outline.</title>
|
||||
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-ui-3/#outline">
|
||||
<link rel="help" href="https://www.w3.org/TR/CSS21/zindex.html#painting-order">
|
||||
<link rel="help" href="https://www.w3.org/TR/CSS2/zindex.html#painting-order">
|
||||
<p>Test passes if there is a filled green square.</p>
|
||||
<div style="overflow: hidden; width: 100px; height: 100px; background: green;">
|
||||
<div style="display: block; width: 110px; height: 110px; margin: -5px; outline: solid blue 3px;"></div>
|
||||
|
|
|
@ -13,8 +13,6 @@
|
|||
<style>
|
||||
#target {
|
||||
font-size: 40px;
|
||||
outline-width: 100px;
|
||||
outline-style: dotted; /* Avoid outline-width computed style 0 */
|
||||
}
|
||||
</style>
|
||||
<div id="target"></div>
|
||||
|
|
|
@ -1,32 +0,0 @@
|
|||
<!-- DO NOT EDIT THIS FILE.
|
||||
Edit the appearance-* file instead and then run:
|
||||
./tools/appearance-build-webkit-reftests.py
|
||||
-->
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Basic User Interface Test: -webkit-appearance: button-bevel</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-ui-4/#appearance-switching">
|
||||
<meta name="assert" content="button-bevel is an alias to auto.">
|
||||
<link rel="match" href="appearance-auto-ref.html">
|
||||
<style>
|
||||
#container { width: 500px; }
|
||||
#container > * { -webkit-appearance: none; -webkit-appearance: button-bevel; }
|
||||
</style>
|
||||
<div id="container">
|
||||
<a>a</a>
|
||||
<button>button</button>
|
||||
<input type="text" value="input-text">
|
||||
<input type="search" value="input-search">
|
||||
<textarea>textarea</textarea>
|
||||
<input type="button" value="input-button">
|
||||
<input type="submit" value="input-submit">
|
||||
<input type="reset" value="input-reset">
|
||||
<input type="range">
|
||||
<input type="checkbox">
|
||||
<input type="radio">
|
||||
<input type="color">
|
||||
<select><option>select</option></select>
|
||||
<select multiple><option>select-multiple</option></select>
|
||||
<meter value=0.5></meter>
|
||||
<progress value=0.5></progress>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue