Chromium Code Reviews| Index: content/test/data/allowed_frames.html |
| diff --git a/content/test/data/allowed_frames.html b/content/test/data/allowed_frames.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..079e96dba434935b3b925012c955190b9d4479c1 |
| --- /dev/null |
| +++ b/content/test/data/allowed_frames.html |
| @@ -0,0 +1,13 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<head> |
| +<title>iframes with allow attribute</title> |
| +</head> |
| +<body> |
| + cross-site iframes: |
|
iclelland
2017/02/16 15:26:33
I think we should remove these labels; I don't thi
lunalu1
2017/02/16 20:16:15
Done.
|
| + <iframe name="frame1" id="child-1" allow="fullscreen vibrate" src="/cross-site/bar.com/title1.html"></iframe> |
| + same-site iframes: |
| + <iframe name="frame2" id="child-2" allow="fullscreen vibrate" src="title1.html"></iframe> |
|
iclelland
2017/02/16 15:26:33
In addition to these two, I'd like to have a coupl
|
| +</body> |
| +</html> |
| + |