Index: LayoutTests/svg/css/svg-resource-fragment-identifier-img-src.html |
diff --git a/LayoutTests/svg/css/svg-resource-fragment-identifier-img-src.html b/LayoutTests/svg/css/svg-resource-fragment-identifier-img-src.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1e77e55165695c50a7ebbc69542135e18f966243 |
--- /dev/null |
+++ b/LayoutTests/svg/css/svg-resource-fragment-identifier-img-src.html |
@@ -0,0 +1,28 @@ |
+<!DOCTYPE html> |
+<html> |
+<head> |
+ <script> |
+ window.targetScaleFactor = 2; |
+ </script> |
+ <script src="../../fast/hidpi/resources/srcset-helper.js"></script> |
+ <style type="text/css" media="screen"> |
+ |
+ div, img { |
+ width: 100px; |
+ height: 100px; |
+ margin: 10px; |
+ display: inline-block; |
+ } |
+ |
+ </style> |
+ |
+</head> |
+<body> |
+ |
+ <img src="resources/fragment-identifiers.svg#red"> |
+ <img src="resources/fragment-identifiers.svg#green"> |
+ <img src="resources/fragment-identifiers.svg#blue"> |
+ <img src="resources/fragment-identifiers.svg#blue" srcset="resources/fragment-identifiers.svg#green 2x"> |
+ |
+</body> |
+</html> |