Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / animations / display-inline-style-adjust.html
blobbaee87d9b0acd80763b5cc2e153e3982e5412053
1 <!DOCTYPE html>
2 <style>
3 @keyframes test {
4 from { background-position: 0 0;}
5 to { background-position: 1px 1px;}
7 div {
8 position: absolute;
9 top: 4em;
10 width: 400px;
12 .animated {
13 position: absolute;
14 animation: test 1000s;
16 </style>
18 <div>
19 <span>This sentence shoul</span>
20 <span class="animated">d span a single line.</span>
21 </div>