Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / button-white-space.html
blob7f25147fde712489304083e16819c1167367aded
1 <p><a href="https://bugs.webkit.org/show_bug.cgi?id=5656">Bug 5656</a>
2 tests whether buttons force a white-space mode or not.
3 These tests will only pass if the white-space mode is not forced and if it is inherited.</p>
4 <div>Buttons should appear next to each other in a single row:</div>
5 <table>
6 <td nowrap>
7 <button value="Search Mail">Search Mail</button>
8 <button value="Search the Web" style="white-space:nowrap">Search the Web</button>
9 </td>
10 </table>
11 <div>Buttons should look identical:</div>
12 <div><button>test button</button></div>
13 <div><button> test button </button></div>
14 <div>Buttons should look identical (ignore vertical spacing):</div>
15 <div><button>&nbsp;&nbsp;test&nbsp;&nbsp;button&nbsp;&nbsp;</button></div>
16 <div><button style="white-space: pre;"> test button </button></div>
17 <div><pre><button> test button </button></pre></div>