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

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

Powered by Google App Engine
This is Rietveld 408576698