Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / backgrounds / bug420029.html
blob20e5c0c3d733579d1dc7db272aa5f2ea051f40b2
1 <style>
2 *{
3 -webkit-padding-start: 6801059;
4 background-image:-webkit-cross-fade(url(foo1), url(foo2), 50%);
6 </style>
7 <script>
8 window.onload = function() {
9 if (window.testRunner) {
10 testRunner.waitUntilDone();
12 setTimeout(function() {
13 if (location.hash == '#done') {
14 document.write('PASS');
15 if (window.testRunner) {
16 testRunner.dumpAsText();
17 testRunner.notifyDone();
19 } else {
20 location.hash = 'done';
21 window.location.reload();
23 }, 0);
25 </script>