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

Side by Side Diff: third_party/WebKit/LayoutTests/images/style-access-during-imageChanged-style-freeze.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 #target[foo] { color: green; } 2 #target[foo] { color: green; }
3 </style> 3 </style>
4 <div id="container"> 4 <div id="container">
5 <div> 5 <div>
6 <img src="x-invalid:" alt="Some wide text"> 6 <img src="x-invalid:" alt="Some wide text">
7 <div id="target"> 7 <div id="target">
8 This should be green, with a wide broken image above. 8 This should be green, with a wide broken image above.
9 </div> 9 </div>
10 </div> 10 </div>
(...skipping 10 matching lines...) Expand all
21 document.body.offsetTop; 21 document.body.offsetTop;
22 container.style.removeProperty("display"); 22 container.style.removeProperty("display");
23 document.body.offsetTop; 23 document.body.offsetTop;
24 var target = document.getElementById("target"); 24 var target = document.getElementById("target");
25 target.setAttribute("foo", ""); 25 target.setAttribute("foo", "");
26 document.body.offsetTop; 26 document.body.offsetTop;
27 var result = document.getElementById("result"); 27 var result = document.getElementById("result");
28 result.innerText = getComputedStyle(target).color === "rgb(0, 128, 0)" ? "PASS" : "FAIL"; 28 result.innerText = getComputedStyle(target).color === "rgb(0, 128, 0)" ? "PASS" : "FAIL";
29 } 29 }
30 </script> 30 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698