blob: e62b068a3444881616205f023f6f5442c58af690 [file] [log] [blame]
hyatt@apple.com9bcbad62011-03-22 19:03:50 +00001<!doctype html>
2<head>
3<title>line-box-contain: none</title>
4<style>
5.test { -webkit-line-box-contain: none; line-box-contain: none; font: 64px/1em Ahem; background-color:red; margin-top:1em }
6.badline { color:red }
7.goodline { color: green }
8</style>
9</head>
10<body>
11You should see a green line below. If you see any red, the test has failed.
12
13<div class="test">
14<span class="badline">xxxxx</span><br>
15<span class="badline">xxxxx</span><br>
16<span class="badline">xxxxx</span><br>
17<span class="badline">xxxxx</span><br>
18<span class="goodline">xxxxx</span>
19</div>