Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / reflections / reflected-img-crash.html
blobc0bcd5583a22c72e780752606e745ded49686ac2
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
4 <html lang="en">
5 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
7 <title>Reflections</title>
8 <style type="text/css" media="screen">
10 img {
11 position: absolute;
12 height: 100px;
13 width: 200px;
14 border: 1px solid black;
15 -webkit-box-reflect: below;
18 img.unreflected {
19 -webkit-box-reflect: none;
22 </style>
23 <script type="text/javascript" charset="utf-8">
25 if (window.testRunner)
26 testRunner.dumpAsText();
28 function runTest()
30 var image = document.getElementById('image');
31 image.className = 'unreflected';
34 window.addEventListener('load', runTest, false);
35 </script>
36 </head>
37 <body>
39 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=28289">https://bugs.webkit.org/show_bug.cgi?id=28289</a>. Should not crash.</p>
40 <img id="image">
42 </body>
43 </html>