Update web-platform-tests to revision 66dc9c93f2c8ebd7c8fdc28fae20d92713c97806

This commit is contained in:
WPT Sync Bot 2019-06-26 10:22:48 +00:00
parent e488ea750b
commit 12f4ae132e
1651 changed files with 8123 additions and 14152 deletions

View file

@ -86,11 +86,11 @@ jobs:
- template: tools/ci/azure/update_hosts.yml
- template: tools/ci/azure/update_manifest.yml
- script: no_proxy='*' ./wpt run --yes --no-manifest-update --manifest MANIFEST.json --metadata infrastructure/metadata/ --log-tbpl - --log-tbpl-level info --channel dev chrome infrastructure/
displayName: 'Run tests: Chrome Dev'
displayName: 'Run tests (Chrome Dev)'
- script: no_proxy='*' ./wpt run --yes --no-manifest-update --manifest MANIFEST.json --metadata infrastructure/metadata/ --log-tbpl - --log-tbpl-level info --channel nightly firefox infrastructure/
displayName: 'Run tests: Firefox Nightly'
displayName: 'Run tests (Firefox Nightly)'
- script: no_proxy='*' ./wpt run --yes --no-manifest-update --manifest MANIFEST.json --metadata infrastructure/metadata/ --log-tbpl - --log-tbpl-level info --channel preview safari infrastructure/
displayName: 'Run tests: Safari Technology Preview'
displayName: 'Run tests (Safari Technology Preview)'
- task: PublishBuildArtifacts@1
displayName: 'Publish results'
inputs:
@ -224,7 +224,7 @@ jobs:
- template: tools/ci/azure/update_hosts.yml
- template: tools/ci/azure/update_manifest.yml
- script: python ./wpt run --yes --no-manifest-update --install-fonts --manifest MANIFEST.json --metadata infrastructure/metadata/ --log-tbpl - --log-tbpl-level info --channel dev edgechromium infrastructure/
displayName: 'Run tests: Edge Dev'
displayName: 'Run tests (Edge Dev)'
- task: PublishBuildArtifacts@1
displayName: 'Publish results'
inputs:
@ -257,7 +257,7 @@ jobs:
- template: tools/ci/azure/update_hosts.yml
- template: tools/ci/azure/update_manifest.yml
- script: python ./wpt run --yes --no-manifest-update --no-restart-on-unexpected --no-fail-on-unexpected --install-fonts --this-chunk $(System.JobPositionInPhase) --total-chunks $(System.TotalJobsInPhase) --chunk-type hash --log-wptreport $(Build.ArtifactStagingDirectory)/wpt_report_$(System.JobPositionInPhase).json --log-wptscreenshot $(Build.ArtifactStagingDirectory)/wpt_screenshot_$(System.JobPositionInPhase).txt --log-tbpl - --log-tbpl-level info --channel dev edgechromium
displayName: 'Run tests: Edge Dev'
displayName: 'Run tests (Edge Dev)'
- task: PublishBuildArtifacts@1
displayName: 'Publish results'
inputs:

View file

@ -0,0 +1,23 @@
// META: script=/common/get-host-info.sub.js
// META: script=/service-workers/service-worker/resources/test-helpers.sub.js
'use strict'
promise_test(async test => {
const script = 'service_workers/sw.js';
const scope = 'service_workers/' + location.pathname;
const serviceWorkerRegistration =
await service_worker_unregister_and_register(test, script, scope);
assert_equals(
serviceWorkerRegistration.active, null,
'There must not be an activated worker');
await promise_rejects(
test, new DOMException('', 'InvalidStateError'),
serviceWorkerRegistration.periodicSync.register(
'test_tag'),
'register() must reject on pending and installing workers');
}, 'Periodic Background Sync requires an activated Service Worker');

View file

@ -0,0 +1,20 @@
// The source to post setup and completion results to.
let source = null;
function sendMessageToDocument(msg) {
source.postMessage(msg);
}
// Notify the document that the SW is registered and ready.
self.addEventListener('message', event => {
source = event.source;
sendMessageToDocument('ready');
});
self.addEventListener('sync', event => {
sendMessageToDocument('sync event received!');
});
self.addEventListener('periodicsync', event => {
sendMessageToDocument('periodicsync event received!');
});

View file

@ -1,14 +1,9 @@
<!doctype html>
<meta charset="utf8">
<meta name="timeout" content="long">
<title>IndexedDB: large nested objects are cloned correctly</title>
<link rel="help" href="https://w3c.github.io/IndexedDB/#abort-transaction">
<link rel="author" href="pwnall@chromium.org" title="Victor Costan">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support-promises.js"></script>
<script src="nested-cloning-common.js"></script>
<script>
// META: title=IndexedDB: large nested objects are cloned correctly
// META: timeout=long
// META: script=support-promises.js
// META: script=nested-cloning-common.js
// META: global=window,dedicatedworker,sharedworker,serviceworker
'use strict';
cloningTestWithKeyGenerator(
'multiple requests of objects with blobs and large typed arrays', [
@ -50,5 +45,3 @@ cloningTestWithKeyGenerator(
{ type: 'blob', size: wrapThreshold, mimeType: 'text/x-blink20', seed: 20 },
],
]);
</script>

View file

@ -1,14 +1,9 @@
<!doctype html>
<meta charset="utf8">
<meta name="timeout" content="long">
<title>IndexedDB: large nested objects are cloned correctly</title>
<link rel="help" href="https://w3c.github.io/IndexedDB/#abort-transaction">
<link rel="author" href="pwnall@chromium.org" title="Victor Costan">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support-promises.js"></script>
<script src="nested-cloning-common.js"></script>
<script>
// META: title=IndexedDB: large nested objects are cloned correctly
// META: timeout=long
// META: script=support-promises.js
// META: script=nested-cloning-common.js
// META: global=window,dedicatedworker,sharedworker,serviceworker
'use strict';
cloningTest('large typed array', [
{ type: 'buffer', size: wrapThreshold, seed: 1 },
@ -45,5 +40,3 @@ cloningTestWithKeyGenerator('object with blobs and large typed arrays', [
seed: 5 },
},
]);
</script>

View file

@ -1,14 +1,9 @@
<!doctype html>
<meta charset="utf8">
<meta name="timeout" content="long">
<title>IndexedDB: small nested objects are cloned correctly</title>
<link rel="help" href="https://w3c.github.io/IndexedDB/#abort-transaction">
<link rel="author" href="pwnall@chromium.org" title="Victor Costan">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support-promises.js"></script>
<script src="nested-cloning-common.js"></script>
<script>
// META: title=IndexedDB: small nested objects are cloned correctly
// META: timeout=long
// META: script=support-promises.js
// META: script=nested-cloning-common.js
// META: global=window,dedicatedworker,sharedworker,serviceworker
'use strict';
cloningTest('small typed array', [
{ type: 'buffer', size: 64, seed: 1 },
@ -42,6 +37,4 @@ cloningTestWithKeyGenerator('array of blobs and small typed arrays', [
{ type: 'buffer', size: 64, seed: 4 },
{ type: 'blob', size: wrapThreshold, mimeType: 'text/x-blink-05', seed: 5 },
],
]);
</script>
]);

View file

@ -46,7 +46,7 @@ For example, on most UNIX-like systems, you can setup the hosts file with:
And on Windows (this must be run in a PowerShell session with Administrator privileges):
```bash
```powershell
python wpt make-hosts-file | Out-File $env:systemroot\System32\drivers\etc\hosts -Encoding ascii -Append
```

View file

@ -6,6 +6,7 @@
<link rel="help" href="http://www.w3.org/TR/REC-CSS1#list-style"/>
<link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html"/>
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
ul {
margin: 1em 5em; border: solid black; padding: 0; width: 6em;

View file

@ -11,6 +11,7 @@
<link rel="match" href="background-color-049-030303-ref.xht" />
<meta name="flags" content="ahem" />
<meta name="assert" content="Background-color is set to rgb(1%, 1%, 1%)." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
#test
{

View file

@ -9,6 +9,7 @@
<link rel="match" href="background-color-052-ref.xht" />
<meta name="flags" content="ahem" />
<meta name="assert" content="Background-color is set to rgb(40%, 40%, 40%)." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
#test
{

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<link rel="match" href="background-color-052-ref.xht" />
<meta name="assert" content="Background-color is set to rgb(+40%, +40%, +40%)." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
#test
{

View file

@ -11,6 +11,7 @@
<link rel="match" href="background-color-054-fdfdfd-ref.xht" />
<meta name="flags" content="ahem" />
<meta name="assert" content="Background-color is set to rgb(99%, 99%, 99%)." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
body
{

View file

@ -11,6 +11,7 @@
<link rel="match" href="background-color-070-030000-ref.xht" />
<meta name="flags" content="ahem" />
<meta name="assert" content="Background-color is set to rgb(1%, 0%, 0%)." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
#test
{

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<link rel="match" href="background-color-073-ref.xht" />
<meta name="assert" content="Background-color is set to rgb(40%, 0%, 0%)." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
#test
{

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<link rel="match" href="background-color-073-ref.xht" />
<meta name="assert" content="Background-color is set to rgb(+40%, 0%, 0%)." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
#test
{

View file

@ -11,6 +11,7 @@
<link rel="match" href="background-color-075-fd0000-ref.xht" />
<meta name="flags" content="ahem" />
<meta name="assert" content="Background-color is set to rgb(99%, 0%, 0%)." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
#test
{

View file

@ -11,6 +11,7 @@
<link rel="match" href="background-color-090-000300-ref.xht" />
<meta name="flags" content="image" />
<meta name="assert" content="Background-color is set to rgb(0%, 1%, 0%)." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
#test
{

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<link rel="match" href="background-color-093-ref.xht" />
<meta name="assert" content="Background-color is set to rgb(0%, 40%, 0%)." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
#test
{

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<link rel="match" href="background-color-093-ref.xht" />
<meta name="assert" content="Background-color is set to rgb(0%, +40%, 0%)." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
#test
{

View file

@ -11,6 +11,7 @@
<link rel="match" href="background-color-095-00fd00-ref.xht" />
<meta name="flags" content="ahem" />
<meta name="assert" content="Background-color is set to rgb(0%, 99%, 0%)." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
#test
{

View file

@ -11,6 +11,7 @@
<link rel="match" href="background-color-110-000003-ref.xht" />
<meta name="flags" content="ahem" />
<meta name="assert" content="Background-color is set to rgb(0%, 0%, 1%)." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
#test
{

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<link rel="match" href="background-color-113-ref.xht" />
<meta name="assert" content="Background-color is set to rgb(0%, 0%, 40%)." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
#test
{

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<link rel="match" href="background-color-113-ref.xht" />
<meta name="assert" content="Background-color is set to rgb(0%, 0%, +40%)." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
#test
{

View file

@ -11,6 +11,7 @@
<link rel="match" href="background-color-115-0000fd-ref.xht" />
<meta name="flags" content="ahem" />
<meta name="assert" content="Background-color is set to rgb(0%, 0%, 99%)." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
#test
{

View file

@ -16,6 +16,7 @@
<meta content="ahem image" name="flags" />
<meta content="ex unit is the 'x-height' of the relevant font. 'em' and 'ex' length values when defining 'font-size' property refer to the computed font size of the parent element." name="assert" />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
html {font: 20px/1 Ahem;}

View file

@ -16,6 +16,7 @@
<meta content="ahem image" name="flags" />
<meta content="ex unit is the 'x-height' of the relevant font. 'em' and 'ex' length values when defining 'font-size' property refer to the computed font size of the parent element." name="assert" />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
html {font: 20px/1 Ahem;}

View file

@ -7,6 +7,7 @@
<link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background-properties" />
<meta name="flags" content="ahem image" />
<meta name="assert" content="The 'background-position' property correctly applies a nominal length value in 'em' units." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{

View file

@ -7,6 +7,7 @@
<link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background-properties" />
<meta name="flags" content="ahem image" />
<meta name="assert" content="The 'background-position' property correctly applies a nominal length value in 'em' units with a plus sign." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{

View file

@ -7,6 +7,7 @@
<link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background-properties" />
<meta name="flags" content="ahem image" />
<meta name="assert" content="The 'background-position' property correctly applies a nominal length value in 'ex' units." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{

View file

@ -7,6 +7,7 @@
<link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background-properties" />
<meta name="flags" content="ahem image" />
<meta name="assert" content="The 'background-position' property correctly applies a nominal length value in 'ex' units with a plus sign." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{

View file

@ -9,6 +9,7 @@
<link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact" />
<meta name="flags" content="ahem"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div p { width: 28em; border: solid; margin: 1em; padding: 0.5em; background: #FFFFCC; color: black; font: 1em/1 Ahem; }
.control { line-height: 3em; }

View file

@ -17,6 +17,7 @@
<link rel="match" href="bidi-004-ref.xht" />
<meta name="flags" content="may21 ahem"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div p { width: 28em; border: solid; margin: 1em; padding: 0.5em; background: #FFFFCC; color: black; font: 1em/1 Ahem; }
.test { border: solid; padding: 0.4em 1em; line-height: 3em; }

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div {
text-align: left;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div {
background: navy;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div {
background: navy;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div {
text-align: right;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div {
background: navy;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side margins should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div {
background: navy;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div {
text-align: left;

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div {
background: navy;

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div {
background: navy;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -9,6 +9,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
span {
color: orange;

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div {
width: 20em;

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div {
width: 20em;

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="Side padding should be unaffected by directionality"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div {
width: 20em;

View file

@ -11,6 +11,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'direction' property does not apply to elements with a display of 'table-row-group'." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
#test
{

View file

@ -11,6 +11,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'direction' property does not apply to elements with a display of 'table-header-group'." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
#test
{

View file

@ -11,6 +11,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'direction' property does not apply to elements with a display of 'table-footer-group'." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
#test
{

View file

@ -11,6 +11,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'direction' property does not apply to elements with a display of 'table-row'." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
.test
{

View file

@ -11,6 +11,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'direction' property does not apply to elements with a display of 'table-column-group'." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
#test
{

View file

@ -11,6 +11,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'direction' property does not apply to elements with a display of 'table-column'." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
#test
{

View file

@ -11,6 +11,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'direction' property applies to elements with a display of 'table-cell'." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
#table
{

View file

@ -11,6 +11,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'direction' property applies to elements with a display of block." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
span
{

View file

@ -9,6 +9,7 @@
<link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#direction" />
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'direction' property applies to elements with a display of list-item." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
body
{

View file

@ -11,6 +11,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'direction' property applies to elements with a display of inline-block." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{

View file

@ -11,6 +11,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'direction' property can apply to elements with a display of 'table' as it specifies the direction of table column layout." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
#table
{

View file

@ -11,6 +11,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'direction' property can apply to elements with a display of 'inline-table' as it specifies the direction of table column layout." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
#table
{

View file

@ -11,6 +11,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'direction' property applies to elements with a display of 'table-caption'." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
#caption
{

View file

@ -8,6 +8,7 @@
<title>CSS Reftest Reference</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div
{

View file

@ -11,6 +11,7 @@
<link rel="match" href="line-breaking-bidi-001-ref.xht" />
<meta name="flags" content="ahem" />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
.test { color: green; background: red; font: 1.25em/1 Ahem; white-space: normal; }
</style>

View file

@ -8,6 +8,7 @@
<title>CSS Reftest Reference</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div
{

View file

@ -11,6 +11,7 @@
<link rel="match" href="line-breaking-bidi-002-ref.xht" />
<meta name="flags" content="ahem" />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
.test { color: green; background: red; font: 1.25em/1 Ahem; white-space: normal; }
</style>

View file

@ -11,6 +11,7 @@
<link rel="match" href="line-breaking-bidi-003-ref.xht" />
<meta name="flags" content="ahem" />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
.test { font: 40px/1 Ahem; border: solid; width: 17em; background: red; }
.test > span { background: lime; }

View file

@ -8,6 +8,7 @@
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div
{

View file

@ -8,6 +8,7 @@
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"/>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div
{

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'border-bottom-width' property supports a minimum length value in 'em' units that sets the width of the bottom border." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'border-bottom-width' property supports a minimum plus one length value in 'em' units that sets the width of the bottom border." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'border-bottom-width' property supports a minimum length value in 'em' units that that has a minus sign before it." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'border-bottom-width' property supports a minimum length value in 'em' units that that has a plus sign before it." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'border-bottom-width' property supports a nominal length value in 'em' units that sets the width of the bottom border." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'border-bottom-width' property supports a nominal length value in 'em' units that has a plus sign before it." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'border-bottom-width' property supports a minimum length value in 'ex' units that sets the width of the bottom border." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'border-bottom-width' property supports a minimum plus one length value in 'ex' units that sets the width of the bottom border." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'border-bottom-width' property supports a minimum length value in 'ex' units that that has a minus sign before it." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'border-bottom-width' property supports a minimum length value in 'ex' units that that has a plus sign before it." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'border-bottom-width' property supports a nominal length value in 'ex' units that sets the width of the bottom border." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{

View file

@ -10,6 +10,7 @@
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'border-bottom-width' property supports a nominal length value in 'ex' units that has a plus sign before it." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{

Some files were not shown because too many files have changed in this diff Show more