Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: third_party/WebKit/LayoutTests/images/style-access-during-imageChanged-crash.html

Issue 2496663002: Merge css3/image/ and fast/images/ to images/ (Closed)
Patch Set: Address failing tests (3 of them) Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <style> 1 <style>
2 @font-face { 2 @font-face {
3 font-family: test; 3 font-family: test;
4 src: url(data:text/plain,1); 4 src: url(data:text/plain,1);
5 } 5 }
6 </style> 6 </style>
7 <p> 7 <p>
8 This test passes if it does not cause an assertion failure or a crash. 8 This test passes if it does not cause an assertion failure or a crash.
9 </p> 9 </p>
10 A <img id="target" alt="A"> 10 A <img id="target" alt="A">
11 <script> 11 <script>
12 function test() 12 function test()
13 { 13 {
14 document.body.offsetTop; 14 document.body.offsetTop;
15 document.body.style.fontFamily="test"; 15 document.body.style.fontFamily="test";
16 document.body.offsetTop; 16 document.body.offsetTop;
17 document.getElementById("target").src = "data:text/plain,2"; 17 document.getElementById("target").src = "data:text/plain,2";
18 } 18 }
19 19
20 if (window.testRunner) 20 if (window.testRunner)
21 testRunner.dumpAsText(); 21 testRunner.dumpAsText();
22 22
23 test(); 23 test();
24 </script> 24 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698