19 lines
442 B
HTML
19 lines
442 B
HTML
<!--
|
|
Used as the source of the library's iframe when the iframe_loading_same_origin feature is enabled.
|
|
See CL-2137.
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>sameorigin.html</title>
|
|
<script>
|
|
window.addEventListener('load', () => {
|
|
window.dispatchEvent(new Event('sameOriginLoad'));
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html> |