OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <meta charset="utf-8"> | 2 <meta charset="utf-8"> |
3 <title>CSS Writing Modes Test: Shrink-to-fit inline-block with a child of orthog
onal block in inline-block</title> | 3 <title>CSS Writing Modes Test: Shrink-to-fit inline-block with a child of orthog
onal block in inline-block</title> |
4 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#orthogonal-flow
s" title="7.3. Orthogonal Flows"> | 4 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#orthogonal-flow
s" title="7.3. Orthogonal Flows"> |
5 <meta name="assert" content="Shrink-to-fit inline-block with a child of orthogon
al block in inline-block"> | 5 <meta name="assert" content="Shrink-to-fit inline-block with a child of orthogon
al block in inline-block"> |
6 <meta name="flags" content="ahem dom"> | 6 <meta name="flags" content="ahem dom"> |
7 <link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com"> | 7 <link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com"> |
8 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserB
ugsSection/css21testsuite/"> <!-- 2015-12-23 --> | 8 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserB
ugsSection/css21testsuite/"> <!-- 2015-12-23 --> |
9 <script src="/resources/testharness.js"></script> | 9 <script src="/resources/testharness.js"></script> |
10 <script src="/resources/testharnessreport.js"></script> | 10 <script src="/resources/testharnessreport.js"></script> |
11 <link rel="stylesheet" href="/resources/testharness.css"> | 11 <link rel="stylesheet" href="/resources/testharness.css"> |
12 <style> | 12 <style> |
13 .test { | 13 .test { |
14 border:thin solid; | 14 border:thin solid; |
15 font:20px/1 Ahem; | 15 font:20px/1 Ahem; |
16 } | 16 } |
17 .target { | 17 .target { |
18 color:blue; | 18 color:blue; |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 node.previousElementSibling.classList.add("fail"); | 79 node.previousElementSibling.classList.add("fail"); |
80 throw e; | 80 throw e; |
81 } | 81 } |
82 }, title); | 82 }, title); |
83 }); | 83 }); |
84 if (window.testRunner) | 84 if (window.testRunner) |
85 container.style.display = "none"; | 85 container.style.display = "none"; |
86 done(); | 86 done(); |
87 } | 87 } |
88 </script> | 88 </script> |
OLD | NEW |