OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <style> |
| 3 body { width: 800px; } |
| 4 |
| 5 * { min-width: 0; min-height: 0; } |
| 6 |
| 7 #list-wrapper { |
| 8 display: flex; |
| 9 flex-direction: column; |
| 10 } |
| 11 |
| 12 #player-list-wrapper { |
| 13 flex-grow: 1; |
| 14 overflow: auto; |
| 15 } |
| 16 </style> |
| 17 |
| 18 <script src="../../resources/testharness.js"></script> |
| 19 <script src="../../resources/testharnessreport.js"></script> |
| 20 <script src="../../resources/check-layout-th.js"></script> |
| 21 |
| 22 <p>Tests that there's no vertical scrollbar for this content</p> |
| 23 |
| 24 <body onload="checkLayout('#list-wrapper')"> |
| 25 <div id="list-wrapper" data-expected-width="800"> |
| 26 <div id="player-list-wrapper" data-expected-width="800"> |
| 27 <div data-expected-width="800">http://www.ispeech.org/p/generic/getaudio?t
ext=http%3A%2F%2Fwww.ispeech.org%2Ftext.to.speech%3Flink%3Dhttp%253A%252F%252Fww
w.ispeech.org%252Ftext.to.speech%253Fvoice%253Dusenglishfemale%2526action%253Dco
nvert%2526speed%253D0%2526text%253DType%252520some%252520text%252520and%252520cl
ick%252520play%2C&voice=usenglishfemale&speed=0&action=convert</div> |
| 28 </div> |
| 29 </div> |
| 30 |
| 31 </body> |
OLD | NEW |