blob: e9877875b74a0f4fc5c667d967859b5e197b08c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<head></head>
<body>
<!-- Test that the white-space property is inherited by buttons. -->
<div style="white-space: nowrap; width: 1px;">
<button type="button">
a few words
</button>
</div>
</body>
</html>
|