Move link rel=stylesheet fetching to layout task

Fixes #3346.
This commit is contained in:
Matt Brubeck 2014-09-15 12:39:18 -07:00
parent 7a5f15f137
commit 1ae3bda172
17 changed files with 154 additions and 196 deletions

View file

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>link/style order test</title>
<link rel="stylesheet" href="data:text/css,body{background:red;}">
<style>body { background: green; }</style>
</head>
<body>
</body>
</html>