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

Side by Side Diff: third_party/WebKit/LayoutTests/images/imagemap-focus-ring-with-paint-root-offset.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 .paintroot { 3 .paintroot {
4 transform: translateZ(0); 4 transform: translateZ(0);
5 position: absolute; 5 position: absolute;
6 left: 5px; 6 left: 5px;
7 top: 50px; 7 top: 50px;
8 } 8 }
9 </style> 9 </style>
10 Tests that we paint area outline properly when the paintroot is shifted. 10 Tests that we paint area outline properly when the paintroot is shifted.
11 <div class=paintroot> 11 <div class=paintroot>
12 <img src="./resources/green.jpg" width=50 height=50 usemap="#map"/> 12 <img src="./resources/green.jpg" width=50 height=50 usemap="#map"/>
13 <map name="map"><area id=area shape="rectangle" coords="5, 5, 25, 25" href="#" ></map> 13 <map name="map"><area id=area shape="rectangle" coords="5, 5, 25, 25" href="#" ></map>
14 </div> 14 </div>
15 <script> 15 <script>
16 area.focus(); 16 area.focus();
17 </script> 17 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698