Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / images / direct-image-dynamic-border-radius.html
blob70219e0a24ae8473db0a625bc858c1e70a04095a
1 <!DOCTYPE html>
2 <html>
3 <style>
4 .composited {
5 transform: translateZ(0);
7 .border-radius {
8 border-radius: 50%;
10 </style>
12 <!-- There should be a green circle on this page -->
13 <body>
14 <img class="composited" onload="load(this)" src="../../fast/images/resources/green-256x256.jpg">
15 </body>
17 <script>
18 function load(element) {
19 element.classList.add('border-radius');
20 setTimeout(done, 0);
23 function done() {
24 if (window.testRunner)
25 testRunner.notifyDone();
28 if (window.testRunner) {
29 testRunner.waitUntilDone();
31 </script>
32 </html>