Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / repaint / modify-inserted-listitem.html
blob5b1f70c73ac4fdeb6b6f65bc337db4671cc3f941
1 <!DOCTYPE html>
2 <svg width="100" height="100">
3 <rect id="ref" x="20" y="30" width="10" height="10" fill="red"></rect>
4 <rect id="move" x="10" y="10" width="10" height="10" fill="green"></rect>
5 </svg>
6 <script src="../../fast/repaint/resources/text-based-repaint.js"></script>
7 <script>
8 testIsAsync = true;
9 window.onload = runRepaintTest;
11 function repaintTest() {
12 var transform = document.querySelector('svg').createSVGTransform();
13 transform.matrix.e = 10;
14 document.querySelector('#move').transform.baseVal.appendItem(transform);
16 requestAnimationFrame(function() {
17 transform.matrix.f = 20;
18 if (window.testRunner)
19 finishRepaintTest();
20 });
22 </script>