Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / createImageElement.svg
blob3bd366d6303abc93de0da63c46b413c43367c7e1
1 <?xml version="1.0" encoding="UTF-8"?>
2 <svg xmlns="http://www.w3.org/2000/svg">
3 <script type="text/javascript">
4 <![CDATA[
5 var ie = document.createElementNS('http://www.w3.org/2000/svg', "image");
6 ie.setAttribute("x", "0");
7 ie.setAttribute("y", "0");
8 ie.setAttribute("width", "100");
9 ie.setAttribute("height", "100");
10 ie.href.baseVal = 'resources/green-checker.png';
11 document.rootElement.appendChild(ie);
12 ]]>
13 </script>
14 </svg>