[Release] Webkit-EFL Ver. 2.0_beta_118996_0.6.22
[framework/web/webkit-efl.git] / LayoutTests / fast / images / style-access-during-imageChanged-crash.html
1 <style>
2     @font-face {
3       font-family: test;
4       src: url(data:text/plain,1);
5     }
6 </style>
7 <p>
8     This test passes if it does not cause an assertion failure or a crash.
9 </p>
10 A <img id="target" alt="A">
11 <script>
12     function test()
13     {
14         document.body.offsetTop;
15         document.body.style.fontFamily="test";
16         document.body.offsetTop;
17         document.getElementById("target").src = "data:text/plain,2";
18     }
19
20     if (window.layoutTestController)
21         layoutTestController.dumpAsText();
22
23     test();
24 </script>