mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-03 14:39:37 +07:00
14 lines
322 B
HTML
14 lines
322 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Sandboxed Content</title>
|
|
<link rel="stylesheet" href="styles/main.css">
|
|
</head>
|
|
<body>
|
|
<h1>Main Window</h1>
|
|
<p>I am the main window. I am not sandboxed.</p>
|
|
<iframe src="sandboxed.html" width="380" height="140"></iframe>
|
|
</body>
|
|
</html>
|