-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcrossIframeMultiple.html
More file actions
44 lines (44 loc) · 1.07 KB
/
Copy pathcrossIframeMultiple.html
File metadata and controls
44 lines (44 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Cross-origin iframe test — Type B1 capture</title>
<style>
body {
font-family: system-ui, sans-serif;
margin: 24px;
color: #1a1a1a;
}
h1 {
font-size: 20px;
}
.host-controls {
margin: 16px 0;
}
.host-controls button {
padding: 8px 14px;
border: 2px solid rebeccapurple;
background: #fff;
cursor: pointer;
}
iframe {
width: 100%;
height: 800px;
border: 1px solid #ccc;
}
</style>
</head>
<body>
<iframe
id="cross-frame"
title="BrowserStack a11y checks (cross-origin)"
src="https://browserstack.github.io/bs-a11y-checks/all/index.html"
></iframe>
<iframe
id="cross-frame"
title="BrowserStack a11y checks (cross-origin)"
src="https://browserstack.github.io/bs-a11y-checks/all/typec.html"
></iframe>
</body>
</html>