1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/376484-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,19 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head> 1.7 +<link rel="stylesheet" type="text/css" 1.8 + href="data:text/css, .g1 { color: green }"> 1.9 +<link rel="stylesheet" type="text/css" 1.10 + href="javascript:' .g2 { color: green }'"> 1.11 +<style type="text/css"> 1.12 + @import url("data:text/css, .g3 { color: green }"); 1.13 + @import url("javascript:' .g4 { color: green }'"); 1.14 +</style> 1.15 +</head> 1.16 +<body> 1.17 +<p class="g1">This is text</p> 1.18 +<p class="g2">This is more text</p> 1.19 +<p class="g3">This is yet more text</p> 1.20 +<p class="g4">This is even more text</p> 1.21 +</body> 1.22 +</html>