Auto merge of #20918 - servo-wpt-sync:wpt_update_04-06-2018, r=jdm

Sync WPT with upstream (04-06-2018)

Automated downstream sync of changes from upstream as of 04-06-2018.
[no-wpt-sync]

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/20918)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2018-06-05 00:10:58 -04:00 committed by GitHub
commit eb1dfd0775
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
690 changed files with 6588 additions and 1564 deletions

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,4 @@
[CSSAnimation-animationName.tentative.html]
[CSSAnimation.animationName]
expected: FAIL

View file

@ -0,0 +1,4 @@
[CSSAnimation-canceling.tentative.html]
[Canceling a CSS animation]
expected: FAIL

View file

@ -0,0 +1,4 @@
[CSSAnimation-effect.tentative.html]
[CSSAnimation.effect]
expected: FAIL

View file

@ -0,0 +1,4 @@
[CSSAnimation-finished.tentative.html]
[CSSAnimation.finished]
expected: FAIL

View file

@ -0,0 +1,4 @@
[CSSAnimation-getComputedTiming.tentative.html]
[CSSAnimation.getComputedTiming()]
expected: FAIL

View file

@ -0,0 +1,4 @@
[CSSAnimation-getCurrentTime.tentative.html]
[CSSAnimation.currentTime]
expected: FAIL

View file

@ -0,0 +1,4 @@
[CSSAnimation-id.tentative.html]
[CSSAnimation.id]
expected: FAIL

View file

@ -0,0 +1,4 @@
[CSSAnimation-pausing.tentative.html]
[Pausing a CSSAnimation]
expected: FAIL

View file

@ -0,0 +1,4 @@
[CSSAnimation-playState.tentative.html]
[CSSAnimation.playState]
expected: FAIL

View file

@ -0,0 +1,4 @@
[CSSAnimation-ready.tentative.html]
[CSSAnimation.ready]
expected: FAIL

View file

@ -0,0 +1,4 @@
[CSSAnimation-startTime.tentative.html]
[CSSAnimation.startTime]
expected: FAIL

View file

@ -0,0 +1,4 @@
[CSSPseudoElement-getAnimations.tentative.html]
[CSSPseudoElement.getAnimations() for CSS animations]
expected: FAIL

View file

@ -0,0 +1,4 @@
[Document-getAnimations.tentative.html]
[Document.getAnimations() for CSS animations]
expected: FAIL

View file

@ -0,0 +1,4 @@
[Element-getAnimations-dynamic-changes.tentative.html]
[\nElement.getAnimations() - Dynamic changes to the list of CSS animations\n]
expected: FAIL

View file

@ -0,0 +1,4 @@
[Element-getAnimations.tentative.html]
[Element.getAnimations() for CSS animations]
expected: FAIL

View file

@ -0,0 +1,4 @@
[KeyframeEffect-getKeyframes.tentative.html]
[KeyframeEffect.getKeyframes() for CSS animations]
expected: FAIL

View file

@ -0,0 +1,4 @@
[KeyframeEffect-target.tentative.html]
[CSSAnimation.effect.target]
expected: FAIL

View file

@ -0,0 +1,4 @@
[event-dispatch.tentative.html]
[Tests for CSS animation event dispatch]
expected: FAIL

View file

@ -0,0 +1,4 @@
[event-order.tentative.html]
[Tests for CSS animation event order]
expected: FAIL

View file

@ -1,4 +1,4 @@
[registered-properties-in-custom-paint.https.html]
type: reftest
expected: TIMEOUT
expected: FAIL
bug: https://github.com/servo/servo/issues/17677

View file

@ -1,2 +0,0 @@
[vh_not_refreshing_on_chrome.html]
expected: FAIL

View file

@ -1,6 +1,5 @@
[005.html]
type: testharness
expected: ERROR
[dedicated worker in shared worker in dedicated worker]
expected: TIMEOUT
expected: FAIL

View file

@ -1,5 +0,0 @@
[shader-with-non-reserved-words.html]
expected: TIMEOUT
[Overall test]
expected: NOTRUN

View file

@ -1,56 +1,28 @@
importScripts("/resources/testharness.js");
var blob, empty_blob, readerSync;
setup(() => {
readerSync = new FileReaderSync();
blob = new Blob(["test"]);
empty_blob = new Blob();
var blob, readerSync;
setup(function() {
readerSync = new FileReaderSync();
blob = new Blob(["test"]);
});
test(() => {
assert_true(readerSync instanceof FileReaderSync);
test(function() {
assert_true(readerSync instanceof FileReaderSync);
}, "Interface");
test(() => {
var text = readerSync.readAsText(blob);
assert_equals(text, "test");
test(function() {
var text = readerSync.readAsText(blob);
assert_equals(text, "test");
}, "readAsText");
test(() => {
var text = readerSync.readAsText(empty_blob);
assert_equals(text, "");
}, "readAsText with empty blob");
test(() => {
var data = readerSync.readAsDataURL(blob);
assert_equals(data.indexOf("data:"), 0);
test(function() {
var data = readerSync.readAsDataURL(blob);
assert_equals(data.indexOf("data:"), 0);
}, "readAsDataURL");
test(() => {
var data = readerSync.readAsDataURL(empty_blob);
assert_equals(data.indexOf("data:"), 0);
}, "readAsDataURL with empty blob");
test(() => {
var data = readerSync.readAsBinaryString(blob);
assert_equals(data, "test");
}, "readAsBinaryString");
test(() => {
var data = readerSync.readAsBinaryString(empty_blob);
assert_equals(data, "");
}, "readAsBinaryString with empty blob");
test(() => {
var data = readerSync.readAsArrayBuffer(blob);
assert_true(data instanceof ArrayBuffer);
assert_equals(data.byteLength, "test".length);
test(function() {
var data = readerSync.readAsArrayBuffer(blob);
assert_true(data instanceof ArrayBuffer);
}, "readAsArrayBuffer");
test(() => {
var data = readerSync.readAsArrayBuffer(empty_blob);
assert_true(data instanceof ArrayBuffer);
assert_equals(data.byteLength, 0);
}, "readAsArrayBuffer with empty blob");
done();

View file

@ -1962,9 +1962,9 @@
"html/elements/style/type-novalid.html": " The only allowed value for the \u201ctype\u201d attribute for the \u201cstyle\u201d element is \u201ctext/css\u201d (with no parameters). (But the attribute is not needed and should be omitted altogether.)",
"html/elements/sub/model-novalid.html": "End tag \u201cp\u201d implied, but there were open elements.",
"html/elements/sup/model-novalid.html": "End tag \u201cp\u201d implied, but there were open elements.",
"html/elements/table/integrity/Alexis_of_Russia-novalid.html": "Bad value \u201ccopyright\u201d for attribute \u201crel\u201d on element \u201clink\u201d: Bad list of link-type keywords: The keyword \u201ccopyright\u201d for the \u201crel\u201d attribute should not be used. Consider using \u201clicense\u201d instead.",
"html/elements/table/integrity/Feodor_I_of_Russia-novalid.html": "Bad value \u201ccopyright\u201d for attribute \u201crel\u201d on element \u201clink\u201d: Bad list of link-type keywords: The keyword \u201ccopyright\u201d for the \u201crel\u201d attribute should not be used. Consider using \u201clicense\u201d instead.",
"html/elements/table/integrity/Naser_al-Din_Shah_Qajar-novalid.html": "Bad value \u201ccopyright\u201d for attribute \u201crel\u201d on element \u201clink\u201d: Bad list of link-type keywords: The keyword \u201ccopyright\u201d for the \u201crel\u201d attribute should not be used. Consider using \u201clicense\u201d instead.",
"html/elements/table/integrity/Alexis_of_Russia-novalid.html": "The \u201calign\u201d attribute on the \u201ctable\u201d element is obsolete. Use CSS instead.",
"html/elements/table/integrity/Feodor_I_of_Russia-novalid.html": "The \u201calign\u201d attribute on the \u201ctable\u201d element is obsolete. Use CSS instead.",
"html/elements/table/integrity/Naser_al-Din_Shah_Qajar-novalid.html": "An \u201cimg\u201d element must have an \u201calt\u201d attribute, except under certain conditions. For details, consult guidance on providing text alternatives for images.",
"html/elements/table/integrity/vertical-novalid.html": "Table cell is overlapped by later table cell.",
"html/elements/table/model-input-child-hidden-novalid.html": "Start tag \u201cinput\u201d seen in \u201ctable\u201d.",
"html/elements/table/model-input-child-novalid.html": "Start tag \u201cinput\u201d seen in \u201ctable\u201d.",

View file

@ -22,17 +22,19 @@
});
x = document.getElementById('x');
x.location = "";
x.onload = function() {
x.location = "";
// While document.write is deprecated I did not find another way to reproduce
// the original exploit.
x.contentDocument.write(
'<script>window.addEventListener("securitypolicyviolation", function(e) {' +
' window.top.postMessage(e.violatedDirective, "*");' +
'});</scr' + 'ipt>' +
'<iframe src="../support/fail.html"></iframe>'
);
x.contentDocument.close();
// While document.write is deprecated I did not find another way to reproduce
// the original exploit.
x.contentDocument.write(
'<script>window.addEventListener("securitypolicyviolation", function(e) {' +
' window.top.postMessage(e.violatedDirective, "*");' +
'});</scr' + 'ipt>' +
'<iframe src="../support/fail.html"></iframe>'
);
x.contentDocument.close();
}
</script>
<script async defer src='../support/checkReport.sub.js?reportField=violated-directive&reportValue=frame-src%20%27none%27''></script>
</body>

View file

@ -28,7 +28,7 @@ var testCookiePathFromDOM = function (testCase, test) {
if (testCase.match === false) {
assert_equals(cookieSet, null);
} else {
assert_not_equals(cookieSet, null);
assert_not_equals(cookieSet, null, "Cookie path from DOM should not be `null`");
}
iframe.contentWindow.expireCookie('dom-' + testCase.name, testCase.path);
@ -45,7 +45,7 @@ var testCookiePathFromHeader = function (testCase, test) {
if (testCase.match === false) {
assert_equals(cookieSet, null);
} else {
assert_not_equals(cookieSet, null);
assert_not_equals(cookieSet, null, "Cookie path from header should not be `null`");
}
test.done();

View file

@ -0,0 +1,95 @@
<!doctype html>
<html>
<head>
<title>blockquote</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<link rel="stylesheet" href="/wai-aria/scripts/manual.css">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/wai-aria/scripts/ATTAcomm.js"></script>
<script>
setup({explicit_timeout: true, explicit_done: true });
var theTest = new ATTAcomm(
{
"steps" : [
{
"element" : "test",
"test" : {
"ATK" : [
[
"property",
"role",
"is",
"ROLE_BLOCK_QUOTE"
]
],
"AXAPI" : [
[
"property",
"AXRole",
"is",
"AXGroup"
],
[
"property",
"AXSubrole",
"is",
"<nil>"
],
[
"property",
"AXRoleDescription",
"is",
"group"
]
],
"IAccessible2" : [
[
"property",
"role",
"is",
"IA2_ROLE_SECTION"
]
],
"MSAA" : [
[
"property",
"role",
"is",
"ROLE_SYSTEM_GROUPING"
]
],
"UIA" : [
[
"property",
"ControlType",
"is",
"Group"
],
[
"property",
"LocalizedControlType",
"is",
"blockquote"
]
]
},
"title" : "step 1",
"type" : "test"
}
],
"title" : "blockquote"
}
) ;
</script>
</head>
<body>
<p>This test examines the ARIA properties for blockquote.</p>
<div role="blockquote" id="test">content</div>
<div id="manualMode"></div>
<div id="log"></div>
<div id="ATTAmessages"></div>
</body>
</html>

View file

@ -0,0 +1,89 @@
<!doctype html>
<html>
<head>
<title>caption</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<link rel="stylesheet" href="/wai-aria/scripts/manual.css">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/wai-aria/scripts/ATTAcomm.js"></script>
<script>
setup({explicit_timeout: true, explicit_done: true });
var theTest = new ATTAcomm(
{
"steps" : [
{
"element" : "test",
"test" : {
"ATK" : [
[
"property",
"role",
"is",
"ROLE_CAPTION"
]
],
"AXAPI" : [
[
"property",
"AXRole",
"is",
"AXGroup"
],
[
"property",
"AXSubrole",
"is",
"<nil>"
],
[
"property",
"AXRoleDescription",
"is",
"group"
]
],
"IAccessible2" : [
[
"property",
"role",
"is",
"IA2_ROLE_CAPTION"
]
],
"MSAA" : [
[
"property",
"role",
"is",
"ROLE_SYSTEM_TEXT"
]
],
"UIA" : [
[
"property",
"ControlType",
"is",
"Text"
]
]
},
"title" : "step 1",
"type" : "test"
}
],
"title" : "caption"
}
) ;
</script>
</head>
<body>
<p>This test examines the ARIA properties for caption.</p>
<div role="caption" id="test">content</div>
<div id="manualMode"></div>
<div id="log"></div>
<div id="ATTAmessages"></div>
</body>
</html>

View file

@ -0,0 +1,89 @@
<!doctype html>
<html>
<head>
<title>paragraph</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<link rel="stylesheet" href="/wai-aria/scripts/manual.css">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/wai-aria/scripts/ATTAcomm.js"></script>
<script>
setup({explicit_timeout: true, explicit_done: true });
var theTest = new ATTAcomm(
{
"steps" : [
{
"element" : "test",
"test" : {
"ATK" : [
[
"property",
"role",
"is",
"ROLE_PARAGRAPH"
]
],
"AXAPI" : [
[
"property",
"AXRole",
"is",
"AXGroup"
],
[
"property",
"AXSubrole",
"is",
"<nil>"
],
[
"property",
"AXRoleDescription",
"is",
"group"
]
],
"IAccessible2" : [
[
"property",
"role",
"is",
"IA2_ROLE_PARAGRAPH"
]
],
"MSAA" : [
[
"property",
"role",
"is",
"ROLE_SYSTEM_TEXT"
]
],
"UIA" : [
[
"property",
"ControlType",
"is",
"Text"
]
]
},
"title" : "step 1",
"type" : "test"
}
],
"title" : "paragraph"
}
) ;
</script>
</head>
<body>
<p>This test examines the ARIA properties for paragraph.</p>
<div role="paragraph" id="test">content</div>
<div id="manualMode"></div>
<div id="log"></div>
<div id="ATTAmessages"></div>
</body>
</html>

View file

@ -6,7 +6,7 @@
<link rel="author" title="Chris Lilley" href="http://www.w3.org/People" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#General" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-css3font-available" />
<meta name="assert" content="Linked fonts are only available to the documents that reference them" />
<meta name="assert" content="Linked fonts are only available to the documents that reference them." />
<style type="text/css"><![CDATA[
body {
font-size: 20px;

View file

@ -6,7 +6,7 @@
<link rel="author" title="Khaled Hosny" href="http://khaledhosny.org" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-extraneous-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="There are four null bytes between the header and the table directory." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Khaled Hosny" href="http://khaledhosny.org" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-extraneous-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="blocks-extraneous-data-001-ref.xht" />
<meta name="assert" content="There are four null bytes between the header and the table directory." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-extraneous-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="There are four null bytes between the table directory and the table data." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-extraneous-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="blocks-extraneous-data-002-ref.xht" />
<meta name="assert" content="There are four null bytes between the table directory and the table data." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-extraneous-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="There are four null bytes after the table data block and there is no metadata or private data." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-extraneous-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="blocks-extraneous-data-003-ref.xht" />
<meta name="assert" content="There are four null bytes after the table data block and there is no metadata or private data." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-extraneous-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="There are four null bytes between the table data and the metadata." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-extraneous-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="blocks-extraneous-data-004-ref.xht" />
<meta name="assert" content="There are four null bytes between the table data and the metadata." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-extraneous-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="There are four null bytes between the table data and the private data." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-extraneous-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="blocks-extraneous-data-005-ref.xht" />
<meta name="assert" content="There are four null bytes between the table data and the private data." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-extraneous-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="There are four null bytes between the metadata and the private data." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-extraneous-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="blocks-extraneous-data-006-ref.xht" />
<meta name="assert" content="There are four null bytes between the metadata and the private data." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-extraneous-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="There are four null bytes after the metadata and there is no private data." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-extraneous-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="blocks-extraneous-data-007-ref.xht" />
<meta name="assert" content="There are four null bytes after the metadata and there is no private data." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-extraneous-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="There are four null bytes after the private data." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-extraneous-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="blocks-extraneous-data-008-ref.xht" />
<meta name="assert" content="There are four null bytes after the private data." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-overlap-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The metadata offset is four bytes before the end of the table data." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-overlap-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="blocks-overlap-001-ref.xht" />
<meta name="assert" content="The metadata offset is four bytes before the end of the table data." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-overlap-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The private data offset is four bytes before the end of the table data." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-overlap-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="blocks-overlap-002-ref.xht" />
<meta name="assert" content="The private data offset is four bytes before the end of the table data." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-overlap-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The private data offset is four bytes before the end of the metadata." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#FileStructure" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-overlap-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="blocks-overlap-003-ref.xht" />
<meta name="assert" content="The private data offset is four bytes before the end of the metadata." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Khaled Hosny" href="http://khaledhosny.org" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#DataTypes" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-mustAccept255UInt16" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="Valid TTF flavored WOFF with different valid representation of the same 255UInt16 encoded number" />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Khaled Hosny" href="http://khaledhosny.org" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#DataTypes" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-mustAccept255UInt16" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="datatypes-alt-255uint16-001-ref.xht" />
<meta name="assert" content="Valid TTF flavored WOFF with different valid representation of the same 255UInt16 encoded number" />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Khaled Hosny" href="http://khaledhosny.org" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#DataTypes" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-mustRejectInvalidBase128" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="Invalid TTF flavored WOFF that has UIntBase128 numbers with leading zeros" />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Khaled Hosny" href="http://khaledhosny.org" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#DataTypes" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-mustRejectInvalidBase128" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="datatypes-invalid-base128-001-ref.xht" />
<meta name="assert" content="Invalid TTF flavored WOFF that has UIntBase128 numbers with leading zeros" />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Khaled Hosny" href="http://khaledhosny.org" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#DataTypes" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-mustRejectInvalidBase128" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="Invalid TTF flavored WOFF that has UIntBase128 numbers which exceed 2^{32}-1" />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Khaled Hosny" href="http://khaledhosny.org" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#DataTypes" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-mustRejectInvalidBase128" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="datatypes-invalid-base128-002-ref.xht" />
<meta name="assert" content="Invalid TTF flavored WOFF that has UIntBase128 numbers which exceed 2^{32}-1" />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Khaled Hosny" href="http://khaledhosny.org" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#DataTypes" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-mustRejectInvalidBase128" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="Invalid TTF flavored WOFF that has UIntBase128 numbers longer than 5 bytes" />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Khaled Hosny" href="http://khaledhosny.org" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#DataTypes" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-mustRejectInvalidBase128" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="datatypes-invalid-base128-003-ref.xht" />
<meta name="assert" content="Invalid TTF flavored WOFF that has UIntBase128 numbers longer than 5 bytes" />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Khaled Hosny" href="http://khaledhosny.org" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#table_dir_format" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-mustCheckRejectMismatchedTables" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="Invalid TTF flavored WOFF font collection with two pairs of mismatched glyf/loca tables" />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Khaled Hosny" href="http://khaledhosny.org" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#table_dir_format" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-mustCheckRejectMismatchedTables" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="directory-mismatched-tables-001-ref.xht" />
<meta name="assert" content="Invalid TTF flavored WOFF font collection with two pairs of mismatched glyf/loca tables" />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The length field contains a value that is four bytes shorter than the actual data." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="header-length-001-ref.xht" />
<meta name="assert" content="The length field contains a value that is four bytes shorter than the actual data." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The length field contains a value that is four bytes longer than the actual data." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="header-length-002-ref.xht" />
<meta name="assert" content="The length field contains a value that is four bytes longer than the actual data." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The header contains 0 in the numTables field. A table directory and table data are present." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="header-numTables-001-ref.xht" />
<meta name="assert" content="The header contains 0 in the numTables field. A table directory and table data are present." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-mustNotUseReservedValue" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The reserved field contains 1." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-mustNotUseReservedValue" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="header-reserved-001-ref.xht" />
<meta name="assert" content="The reserved field contains 1." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-noMagicNumber-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The signature field contains XXXX instead of wOFF." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-noMagicNumber-reject" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="header-signature-001-ref.xht" />
<meta name="assert" content="The signature field contains XXXX instead of wOFF." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Khaled Hosny" href="http://khaledhosny.org" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-mustNotRejectIncorrectTotalSize" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The totalSfntSize field contains a too small incorrect value." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Khaled Hosny" href="http://khaledhosny.org" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-mustNotRejectIncorrectTotalSize" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="header-totalsfntsize-001-ref.xht" />
<meta name="assert" content="The totalSfntSize field contains a too small incorrect value." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Khaled Hosny" href="http://khaledhosny.org" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-mustNotRejectIncorrectTotalSize" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The totalSfntSize field contains a too big incorrect value." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Khaled Hosny" href="http://khaledhosny.org" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#woff20Header" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-mustNotRejectIncorrectTotalSize" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="header-totalsfntsize-002-ref.xht" />
<meta name="assert" content="The totalSfntSize field contains a too big incorrect value." />
<style type="text/css"><![CDATA[

View file

@ -5,8 +5,8 @@
<title>WOFF Test: No Metadata Present</title>
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-metadata-noeffect" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-noeffect" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The file has no metadata." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -5,8 +5,8 @@
<title>WOFF Test: No Metadata Present</title>
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-metadata-noeffect" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-noeffect" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="metadata-noeffect-001-ref.xht" />
<meta name="assert" content="The file has no metadata." />
<style type="text/css"><![CDATA[

View file

@ -5,9 +5,9 @@
<title>WOFF Test: Metadata Present</title>
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-metadata-noeffect" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-metadata-maydisplay" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-noeffect" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-maydisplay" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The file has metadata." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -5,9 +5,9 @@
<title>WOFF Test: Metadata Present</title>
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-metadata-noeffect" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-metadata-maydisplay" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-noeffect" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-maydisplay" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="metadata-noeffect-002-ref.xht" />
<meta name="assert" content="The file has metadata." />
<style type="text/css"><![CDATA[

View file

@ -6,8 +6,8 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-metadata-authoritative" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-authoritative" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The name table and metadata fields are out of sync. The name table contains FAIL and the metadata contains PASS for unique id, vendor name, vendor url, credit name, credit url, description, license, license url, copyright and trademark." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,8 +6,8 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-metadata-authoritative" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-authoritative" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="metadatadisplay-authoritative-001-ref.xht" />
<meta name="assert" content="The name table and metadata fields are out of sync. The name table contains FAIL and the metadata contains PASS for unique id, vendor name, vendor url, credit name, credit url, description, license, license url, copyright and trademark." />
<style type="text/css"><![CDATA[

View file

@ -7,7 +7,7 @@
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-metadata-alwayscompress" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The metadata is stored in an uncompressed state and therefore does not have the proper compression format." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -7,7 +7,7 @@
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-metadata-alwayscompress" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="metadatadisplay-compression-001-ref.xht" />
<meta name="assert" content="The metadata is stored in an uncompressed state and therefore does not have the proper compression format." />
<style type="text/css"><![CDATA[

View file

@ -7,7 +7,7 @@
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-noeffect" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The xml encoding is set to UTF-8." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -7,7 +7,7 @@
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-noeffect" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="metadatadisplay-encoding-001-ref.xht" />
<meta name="assert" content="The xml encoding is set to UTF-8." />
<style type="text/css"><![CDATA[

View file

@ -7,7 +7,7 @@
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-noeffect" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-invalid-mustignore" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The xml encoding is set to UTF-16." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -7,7 +7,7 @@
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-noeffect" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-invalid-mustignore" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="metadatadisplay-encoding-002-ref.xht" />
<meta name="assert" content="The xml encoding is set to UTF-16." />
<style type="text/css"><![CDATA[

View file

@ -6,8 +6,8 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-noeffect" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-invalid-mustignore" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-invalid-mustignore" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The xml encoding is set to ISO-8859-1." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,8 +6,8 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-noeffect" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-invalid-mustignore" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-invalid-mustignore" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="metadatadisplay-encoding-003-ref.xht" />
<meta name="assert" content="The xml encoding is set to ISO-8859-1." />
<style type="text/css"><![CDATA[

View file

@ -7,7 +7,7 @@
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-noeffect" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The xml encoding is not declared and there is no BOM." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -7,7 +7,7 @@
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-noeffect" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="metadatadisplay-encoding-004-ref.xht" />
<meta name="assert" content="The xml encoding is not declared and there is no BOM." />
<style type="text/css"><![CDATA[

View file

@ -7,7 +7,7 @@
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-noeffect" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The xml encoding is not declared and there is a UTF-8 BOM." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -7,7 +7,7 @@
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-noeffect" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="metadatadisplay-encoding-005-ref.xht" />
<meta name="assert" content="The xml encoding is not declared and there is a UTF-8 BOM." />
<style type="text/css"><![CDATA[

View file

@ -6,8 +6,8 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-noeffect" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-invalid-mustignore" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-invalid-mustignore" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The xml encoding is not declared and there is a UTF-16 BOM." />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,8 +6,8 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-metadata-noeffect" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-invalid-mustignore" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="help" href="http://www.w3.org/TR/WOFF/#conform-invalid-mustignore" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="metadatadisplay-encoding-006-ref.xht" />
<meta name="assert" content="The xml encoding is not declared and there is a UTF-16 BOM." />
<style type="text/css"><![CDATA[

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-metaOrigLength" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<meta name="assert" content="The metadata decompresses to a length that is 1 byte smaller than the length defined in metaOrigLength" />
<style type="text/css"><![CDATA[
@import url("support/test-fonts.css");

View file

@ -6,7 +6,7 @@
<link rel="author" title="Tal Leming" href="http://typesupply.com" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#Metadata" />
<link rel="help" href="http://dev.w3.org/webfonts/WOFF2/spec/#conform-metaOrigLength" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" />
<link rel="match" href="metadatadisplay-metaOrigLength-001-ref.xht" />
<meta name="assert" content="The metadata decompresses to a length that is 1 byte smaller than the length defined in metaOrigLength" />
<style type="text/css"><![CDATA[

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