Index: LayoutTests/http/tests/security/referrer-policy-attribute-img-picture.html |
diff --git a/LayoutTests/http/tests/security/referrer-policy-attribute-img-picture.html b/LayoutTests/http/tests/security/referrer-policy-attribute-img-picture.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..73bf3f70f06d4a3753584fb0d8e53e0e427284cc |
--- /dev/null |
+++ b/LayoutTests/http/tests/security/referrer-policy-attribute-img-picture.html |
@@ -0,0 +1,16 @@ |
+<!DOCTYPE html> |
+<html> |
+<body> |
+ <picture> |
Yoav Weiss
2015/08/19 06:23:04
Nit: indentation is a bit messed up
estark
2015/08/19 16:17:01
Done.
|
+ <source srcset="resources/abe.png" media="(false)"> |
+ <img src="resources/green-if-no-referrer.php" |
+ referrerpolicy="no-referrer" /> |
+ </picture> |
+ |
+ <picture> |
+ <source srcset="resources/green-if-no-referrer.php" type="image/png"> |
+ <img src="resources/abe.png" |
+ referrerpolicy="no-referrer" /> |
+ </picture> |
+</body> |
+</html> |