1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/identity/tests/chrome/sandbox_content.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<!-- Any copyright is dedicated to the Public Domain. 1.7 + - http://creativecommons.org/publicdomain/zero/1.0/ --> 1.8 +<head> 1.9 +<meta charset="utf-8"> 1.10 +<title>Page testing blocked content in the Sandbox</title> 1.11 + 1.12 +<link rel="stylesheet" src="sandbox_content.sjs?text/css"/> 1.13 + 1.14 +<script src="sandbox_content.sjs?application/javascript"></script> 1.15 + 1.16 +</head> 1.17 + 1.18 +<body> 1.19 + 1.20 +<img src="sandbox_content.sjs?image/jpeg"/> 1.21 + 1.22 +<!-- media --> 1.23 +<video src="sandbox_content.sjs?video/webm" autoplay="true"></video> 1.24 +<audio src="sandbox_content.sjs?audio/ogg" autoplay="true"></audio> 1.25 + 1.26 +<!-- plugins --> 1.27 +<embed src="sandbox_content.sjs?application/x-test"/> 1.28 +<object data="sandbox_content.sjs?application/x-test"></object> 1.29 +<applet code="sandbox_content.sjs?application/x-java-applet"></applet> 1.30 + 1.31 +<iframe src="sandbox_content.sjs?text/html"></iframe> 1.32 + 1.33 +</body> 1.34 + 1.35 +</html>