bzbarsky%mit.edu 6d124715d1 Default javascript: URIs to running in a sandbox instead of not running at
all.  Bug 376484, r+sr=jst


git-svn-id: svn://10.0.0.236/trunk@224241 18797224-902f-48f8-a5cc-f745e15eee43
2007-04-05 22:49:32 +00:00

20 lines
526 B
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css"
href="data:text/css, .g1 { color: green }">
<link rel="stylesheet" type="text/css"
href="javascript:' .g2 { color: green }'">
<style type="text/css">
@import url("data:text/css, .g3 { color: green }");
@import url("javascript:' .g4 { color: green }'");
</style>
</head>
<body>
<p class="g1">This is text</p>
<p class="g2">This is more text</p>
<p class="g3">This is yet more text</p>
<p class="g4">This is even more text</p>
</body>
</html>