Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / tokenizer / resources / load-stylesheet-and-document-write-script.js
bloba64c2a7b528f6490c89dfbfad64b71fb1551e56e
1 var stylesheet = document.createElement("link");
2 stylesheet.rel = "stylesheet";
3 stylesheet.type = "text/css";
4 stylesheet.href = "does-not-exist.css";
5 document.lastChild.firstChild.appendChild(stylesheet);
7 document.write("<script src=resources/empty_script.js></script>");