| 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 with orthogonal children</title> | 3 <title>CSS Writing Modes Test: Shrink-to-fit with orthogonal children</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 with orthogonal children"> | 5 <meta name="assert" content="Shrink-to-fit with orthogonal children"> |
| 6 <meta name="flags" content="ahem dom combo"> | 6 <meta name="flags" content="ahem dom combo"> |
| 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; |
| 19 height:3em; /* height: 3em is not required. IE11 and Edge12 compute height t
o ICB height if | 19 height:3em; /* height: 3em is not required. IE11 and Edge12 compute height t
o ICB height if |
| 20 not set. We want the test to focus exclusively on shrink-to-fit algorithm. *
/ | 20 not set. We want the test to focus exclusively on shrink-to-fit algorithm. *
/ |
| 21 writing-mode:vertical-rl; | 21 writing-mode:vertical-rl; |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 node.previousElementSibling.classList.add("fail"); | 171 node.previousElementSibling.classList.add("fail"); |
| 172 throw e; | 172 throw e; |
| 173 } | 173 } |
| 174 }, title); | 174 }, title); |
| 175 }); | 175 }); |
| 176 if (window.testRunner) | 176 if (window.testRunner) |
| 177 container.style.display = "none"; | 177 container.style.display = "none"; |
| 178 done(); | 178 done(); |
| 179 } | 179 } |
| 180 </script> | 180 </script> |
| OLD | NEW |