Update web-platform-tests to revision b7ee88243f64e6c7f2d00c163bd3bc501e4db7ef

This commit is contained in:
WPT Sync Bot 2018-02-06 20:08:49 -05:00
parent 804b4b3db6
commit a4b4c8e015
134 changed files with 2918 additions and 388 deletions

View file

@ -1,8 +1,4 @@
[url-in-tags-revoke.window.html]
expected: TIMEOUT
[Fetching a blob URL immediately before revoking it works in an iframe.]
expected: FAIL
[Fetching a blob URL immediately before revoking it works in <script> tags.]
expected: TIMEOUT

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,2 @@
[text-overflow-027.html]
expected: FAIL

View file

@ -0,0 +1,2 @@
[text-overflow-028.html]
expected: FAIL

View file

@ -0,0 +1,2 @@
[text-overflow-029.html]
expected: FAIL

View file

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

View file

@ -12,3 +12,6 @@
[Values of CSSImportRule attributes]
expected: FAIL
[MediaList mediaText attribute should be updated]
expected: FAIL

View file

@ -0,0 +1,4 @@
[pseudo-class-defined.html]
[Untitled]
expected: FAIL

View file

@ -172,63 +172,3 @@
[XHTML img usemap="http://example.org/#garbage-before-hash-id"]
expected: FAIL
[HTML (quirks) IMG usemap="no-hash-name"]
expected: FAIL
[HTML (quirks) IMG usemap="no-hash-id"]
expected: FAIL
[HTML (quirks) IMG usemap="hash-last#"]
expected: FAIL
[HTML (quirks) IMG usemap=""]
expected: FAIL
[HTML (quirks) IMG usemap="#"]
expected: FAIL
[HTML (quirks) IMG usemap="#percent-escape-name-%41"]
expected: FAIL
[HTML (quirks) IMG usemap="#percent-escape-id-%41"]
expected: FAIL
[HTML (quirks) IMG usemap="#no-such-map"]
expected: FAIL
[HTML (quirks) IMG usemap="#different-CASE-name"]
expected: FAIL
[HTML (quirks) IMG usemap="#different-CASE-id"]
expected: FAIL
[XHTML img usemap="no-hash-name"]
expected: FAIL
[XHTML img usemap="no-hash-id"]
expected: FAIL
[XHTML img usemap="hash-last#"]
expected: FAIL
[XHTML img usemap=""]
expected: FAIL
[XHTML img usemap="#"]
expected: FAIL
[XHTML img usemap="#percent-escape-name-%41"]
expected: FAIL
[XHTML img usemap="#percent-escape-id-%41"]
expected: FAIL
[XHTML img usemap="#no-such-map"]
expected: FAIL
[XHTML img usemap="#different-CASE-name"]
expected: FAIL
[XHTML img usemap="#different-CASE-id"]
expected: FAIL

View file

@ -1,4 +0,0 @@
[setSelectionRange.html]
type: testharness
[setSelectionRange on line boundaries]
expected: FAIL

View file

@ -54,6 +54,9 @@ function assert_style_value_equals(a, b) {
assert_style_value_equals(a.ax, b.ax);
assert_style_value_equals(a.ay, b.ay);
break;
case 'CSSSkewX':
assert_style_value_equals(a.ax, b.ax);
break;
case 'CSSPerspective':
assert_style_value_equals(a.length, b.length);
break;

View file

@ -123,6 +123,11 @@ const gTestCases = [
expected: new CSSSkew(CSS.deg(90), CSS.deg(0)),
desc: 'skew() with only X'
},
{
cssText: 'skew(90deg, 0deg)',
expected: new CSSSkew(CSS.deg(90), CSS.deg(0)),
desc: 'skew() with X and Y which is 0 value'
},
{
cssText: 'skew(90deg, 45deg)',
expected: new CSSSkew(CSS.deg(90), CSS.deg(45)),
@ -130,7 +135,7 @@ const gTestCases = [
},
{
cssText: 'skewX(90deg)',
expected: new CSSSkew(CSS.deg(90), CSS.deg(0)),
expected: new CSSSkewX(CSS.deg(90)),
desc: 'skewX()'
},
{
@ -153,12 +158,13 @@ for (const {cssText, expected, desc} of gTestCases) {
test(t => {
test_transform_normalization(t,
'translate(1px) rotateX(90deg) perspective(1px) skew(90deg) scale3d(1, 2, 3)',
'translate(1px) rotateX(90deg) perspective(1px) skew(90deg) skewX(20deg) scale3d(1, 2, 3)',
new CSSTransformValue([
new CSSTranslate(CSS.px(1), CSS.px(0)),
new CSSRotate(CSS.number(1), CSS.number(0), CSS.number(0), CSS.deg(90)),
new CSSPerspective(CSS.px(1)),
new CSSSkew(CSS.deg(90), CSS.deg(0)),
new CSSSkewX(CSS.deg(20)),
new CSSScale(CSS.number(1), CSS.number(2), CSS.number(3)),
]));
}, 'Normalizing a <transform-list> returns a CSSTransformValue containing all the transforms');

View file

@ -49,6 +49,11 @@ const gTestCases = [
cssText: 'skew(90deg)',
desc: 'CSSSkew with Y which is 0 value'
},
{
value: new CSSSkewX(CSS.deg(90)),
cssText: 'skewX(90deg)',
desc: 'CSSSkewX'
},
{
value: new CSSPerspective(CSS.px(1)),
cssText: 'perspective(1px)',

View file

@ -0,0 +1,62 @@
<!doctype html>
<meta charset="utf-8">
<title>CSSSkewX tests</title>
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om-1/#cssskewx">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../resources/testhelper.js"></script>
<script>
'use strict';
const gInvalidTestCases = [
{ value: 'auto', desc: 'a keyword'},
{ value: 3.14, desc: 'a double'},
{ value: 0, desc: 'a unitless zero'},
{ value: '10deg', desc: 'a string angle'},
{ value: CSS.number(10), desc: 'a number CSSUnitValue'},
{ value: CSS.s(10), desc: 'a time dimension CSSUnitValue'},
{ value: new CSSMathSum(CSS.px(1)), desc: 'a CSSMathValue of length type' },
];
for (const {value, desc} of gInvalidTestCases) {
test(() => {
assert_throws(new TypeError(), () => new CSSSkewX(value));
}, 'Constructing a CSSSkewX with ' + desc + ' throws a TypeError');
}
for (const {value, desc} of gInvalidTestCases) {
test(() => {
let skewX = new CSSSkewX(CSS.deg(0));
assert_throws(new TypeError(), () => skewX.ax = value);
assert_style_value_equals(skewX.ax, CSS.deg(0));
}, 'Updating CSSSkewX.ax with ' + desc + ' throws a TypeError');
}
const gValidTestCases = [
{ value: CSS.deg(-3.14), desc: 'an angle CSSUnitValue' },
{ value: new CSSMathSum(CSS.deg(1)), desc: 'a CSSMathValue of angle type' },
];
for (const {value: ax, desc: axDesc} of gValidTestCases) {
test(() => {
const skewX = new CSSSkewX(ax);
assert_equals(skewX.ax, ax);
assert_true(skewX.is2D);
}, 'CSSSkewX can be constructed from ' + axDesc);
}
for (const {value, desc} of gValidTestCases) {
test(() => {
let skewX = new CSSSkewX(CSS.deg(0));
skewX.ax = value;
assert_style_value_equals(skewX.ax, value);
}, 'CSSSkew.ax can be updated to ' + desc);
}
test(() => {
let skewX = new CSSSkewX(CSS.deg(0));
skewX.is2D = false;
assert_true(skewX.is2D);
}, 'Modifying skewX.is2D is a no-op');
</script>

View file

@ -0,0 +1,23 @@
<!doctype html>
<meta charset="utf-8">
<title>'display' property</title>
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om-1/#dom-stylepropertymap-get">
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om-1/#dom-stylepropertymap-set">
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om-1/#property-stle-value-normalization">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../../resources/testhelper.js"></script>
<script src="resources/testsuite.js"></script>
<body>
<div id="log">
<script>
'use strict';
runPropertyTests('display', [
{
specified: '<ident>',
examples: [new CSSKeywordValue('none'), new CSSKeywordValue('block')]
},
]);
</script>

View file

@ -0,0 +1,23 @@
<!doctype html>
<meta charset="utf-8">
<title>'margin-top' property</title>
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om-1/#dom-stylepropertymap-get">
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om-1/#dom-stylepropertymap-set">
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om-1/#property-stle-value-normalization">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../../resources/testhelper.js"></script>
<script src="resources/testsuite.js"></script>
<body>
<div id="log">
<script>
'use strict';
runPropertyTests('margin-top', [
{ specified: '0' },
{ specified: '<ident>', examples: [new CSSKeywordValue('auto')] },
{ specified: '<percentage>' },
{ specified: '<length>' },
]);
</script>

View file

@ -0,0 +1,62 @@
function testGet(propertyName, values, description) {
test(t => {
let element = createDivWithStyle(t);
let styleMap = element.attributeStyleMap;
for (const styleValue of values) {
element.style[propertyName] = styleValue.toString();
getComputedStyle(element); // Force a style recalc.
const result = styleMap.get(propertyName);
assert_style_value_equals(result, styleValue);
}
}, `Can get ${description} from '${propertyName}'`);
}
function testSet(propertyName, values, description) {
test(t => {
let element = createDivWithStyle(t);
let styleMap = element.attributeStyleMap;
for (const styleValue of values) {
styleMap.set(propertyName, styleValue);
getComputedStyle(element); // Force a style recalc.
assert_equals(element.style[propertyName], styleValue.toString());
}
}, `Can set '${propertyName}' to ${description}`);
}
function testGetSet(propertyName, values, description) {
testGet(propertyName, values, description);
testSet(propertyName, values, description);
}
function runPropertyTests(propertyName, testCases) {
for (const testCase of testCases) {
if (testCase.specified == '0') {
testSet(propertyName, [
new CSSUnitValue(0, 'number'),
], 'unitless zero');
} else if (testCase.specified === '<length>') {
testGetSet(propertyName, [
new CSSUnitValue(0, 'px'),
new CSSUnitValue(-3.14, 'em'),
new CSSUnitValue(3.14, 'cm'),
], 'a length CSSUnitValue');
} else if (testCase.specified == '<percentage>') {
testGetSet(propertyName, [
new CSSUnitValue(0, 'percent'),
new CSSUnitValue(-3.14, 'percent'),
new CSSUnitValue(3.14, 'percent'),
], 'a percent CSSUnitValue');
} else if (testCase.specified == '<ident>') {
if (!testCase.examples) {
throw new Error('<ident> tests require examples');
}
testGetSet(propertyName, testCase.examples,
'a CSSKeywordValue');
}
}
}

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Basic User Interface Test Reference</title>
<link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
<style>
div { font-family: monospace; }
</style>
<p>The test passes if the following text is visible below: 123456 FE…</p>
<div>123456 FE…</bdo></div>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Basic User Interface Test Reference</title>
<link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
<style>
div { font-family: monospace; }
</style>
<p>The test passes if the following text is visible below: …56 FEDCBA</p>
<div>…56 FEDCBA</div>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<title>CSS Basic User Interface Reference</title>
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/">
<style>
div { font: 20px monospace; }
</style>
<div>Test passed…</div>

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Basic User Interface Test: text-overflow applies visually to bidi</title>
<link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
<link rel="help" href="http://www.w3.org/TR/css-ui-3/#text-overflow">
<link rel="help" href="http://www.w3.org/TR/css-ui-4/#text-overflow">
<link rel="match" href="reference/text-overflow-027-ref.html">
<meta name="flags" content="">
<meta name="assert" content="text-overflow is a visual operation that occurs after layout, and therfore ellides text from the visual end of the line, even in bidi situations">
<style>
div {
font-family: monospace;
width: 10ch;
overflow: hidden;
text-overflow: ellipsis;
white-space: pre;
}
</style>
<p>The test passes if the following text is visible below: 123456 FE…</p>
<div>123456 <bdo dir=rtl>ABCDEF</bdo></div>

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Basic User Interface Test: text-overflow applies visually to bidi</title>
<link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
<link rel="help" href="http://www.w3.org/TR/css-ui-3/#text-overflow">
<link rel="help" href="http://www.w3.org/TR/css-ui-4/#text-overflow">
<link rel="match" href="reference/text-overflow-028-ref.html">
<meta name="flags" content="">
<meta name="assert" content="text-overflow is a visual operation that occurs after layout, and therfore ellides text from the visual end of the line, even in bidi situations">
<style>
div {
font-family: monospace;
width: 10ch;
overflow: hidden;
text-overflow: ellipsis;
white-space: pre;
}
</style>
<p>The test passes if the following text is visible below: …56 FEDCBA</p>
<div dir=rtl><bdo dir=rtl>ABCDEF</bdo> 123456</div>

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<title>CSS Basic User Interface Test: text-overflow and bidi interaction</title>
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/">
<link rel="help" href="http://www.w3.org/TR/css-ui-3/#text-overflow">
<link rel="help" href="http://www.w3.org/TR/css-ui-4/#text-overflow">
<link rel="match" href="reference/text-overflow-029-ref.html">
<meta name="assert" content="When there's content of mixed directionality, text-overflow ellides the characters at the physical end of the line.">
<meta name="flags" content="">
<style>
div {
font: 20px monospace;
width: 12.3ch; /* slightly more than 12ch because in some browsers (safari) the ellipsis is slightly large than other characters, even in monospace fonts. */
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
</style>
<div>Test &#x202E;deliafdessap&#x202C;</div>

View file

@ -15,7 +15,7 @@
-->
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#auto-multicol" title="7.3.2 Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="float-lft-orthog-htb-in-vlr-002-ref.xht" />
<meta content="" name="flags" />

View file

@ -15,7 +15,7 @@
-->
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#auto-multicol" title="7.3.2 Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="float-lft-orthog-htb-in-vrl-002-ref.xht" />
<meta content="" name="flags" />

View file

@ -15,7 +15,7 @@
-->
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#auto-multicol" title="7.3.2 Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="float-lft-orthog-vlr-in-htb-002-ref.xht" />
<meta content="" name="flags" />

View file

@ -15,7 +15,7 @@
-->
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#auto-multicol" title="7.3.2 Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="float-lft-orthog-vrl-in-htb-002-ref.xht" />
<meta content="" name="flags" />

View file

@ -15,7 +15,7 @@
-->
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#auto-multicol" title="7.3.2 Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="float-rgt-orthog-htb-in-vlr-003-ref.xht" />
<meta content="" name="flags" />

View file

@ -15,7 +15,7 @@
-->
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#auto-multicol" title="7.3.2 Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="float-rgt-orthog-htb-in-vrl-003-ref.xht" />
<meta content="" name="flags" />

View file

@ -15,7 +15,7 @@
-->
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#auto-multicol" title="7.3.2 Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="float-rgt-orthog-vlr-in-htb-003-ref.xht" />
<meta content="" name="flags" />

View file

@ -15,7 +15,7 @@
-->
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#auto-multicol" title="7.3.2 Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="float-rgt-orthog-vrl-in-htb-003-ref.xht" />
<meta content="" name="flags" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside auto-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-001-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside auto-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-003-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside auto-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-004-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside auto-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-006-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-007-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-008-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-003-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-010-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-011-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-006-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside auto-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-013-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside auto-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-015-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside auto-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-016-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside auto-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-018-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-019-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-020-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-015-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-022-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-023-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-lr' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-018-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside auto-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-001-ref.xht" />
<meta name="DC.date.created" content="2016-12-13T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside auto-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-003-ref.xht" />
<meta name="DC.date.created" content="2016-12-19T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside auto-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-004-ref.xht" />
<meta name="DC.date.created" content="2016-12-19T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside auto-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-006-ref.xht" />
<meta name="DC.date.created" content="2016-12-19T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-007-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-008-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-003-ref.xht" />
<meta name="DC.date.created" content="2016-12-19T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-010-ref.xht" />
<meta name="DC.date.created" content="2016-12-19T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-011-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-006-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside auto-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-013-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside auto-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-015-ref.xht" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside auto-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vlr-016-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside auto-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-018-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-019-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-020-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-015-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-022-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-023-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'horizontal-tb' block with 'auto' inline size inside definite-sized 'vertical-rl' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-htb-in-vrl-018-ref.xht" />
<meta name="DC.date.created" content="2016-12-20T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside auto-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-001-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-rl' block with 'auto' inline size inside auto-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-003-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside auto-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-004-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside auto-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-006-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside definite-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-007-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside definite-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-008-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside definite-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-009-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside definite-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-010-ref.xht" />
<meta name="DC.date.created" content="2016-09-15T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside definite-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-011-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside definite-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-012-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside auto-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-013-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside auto-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-015-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside auto-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-016-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside auto-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-018-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside definite-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-019-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside definite-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-020-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside definite-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-015-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside definite-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-022-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside definite-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-023-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-lr' block with 'auto' inline size inside definite-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vlr-in-htb-018-ref.xht" />
<meta name="DC.date.created" content="2016-10-04T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-rl' block with 'auto' inline size inside auto-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vrl-in-htb-001-ref.xht" />
<meta name="DC.date.created" content="2016-09-02T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-rl' block with 'auto' inline size inside auto-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vrl-in-htb-003-ref.xht" />
<meta name="DC.date.created" content="2016-09-08T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-rl' block with 'auto' inline size inside auto-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vrl-in-htb-004-ref.xht" />
<meta name="DC.date.created" content="2016-09-15T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-rl' block with 'auto' inline size inside auto-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vrl-in-htb-006-ref.xht" />
<meta name="DC.date.created" content="2016-09-15T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-rl' block with 'auto' inline size inside definite-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vrl-in-htb-007-ref.xht" />
<meta name="DC.date.created" content="2016-09-15T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-rl' block with 'auto' inline size inside definite-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vrl-in-htb-008-ref.xht" />
<meta name="DC.date.created" content="2016-09-15T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-rl' block with 'auto' inline size inside definite-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vrl-in-htb-009-ref.xht" />
<meta name="DC.date.created" content="2016-09-15T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-rl' block with 'auto' inline size inside definite-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vrl-in-htb-010-ref.xht" />
<meta name="DC.date.created" content="2016-09-15T09:54:03+11:00" scheme="W3CDTF" />

View file

@ -7,7 +7,7 @@
<title>CSS Writing Modes Test: sizing of orthogonal 'vertical-rl' block with 'auto' inline size inside definite-sized 'horizontal-tb' containing block</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#auto-multicol" title="7.3.2. Auto-sizing Block Containers in Orthogonal Flows" />
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" />
<link rel="match" href="sizing-orthog-vrl-in-htb-011-ref.xht" />
<meta name="DC.date.created" content="2016-09-15T09:54:03+11:00" scheme="W3CDTF" />

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