Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / plugins / webview-plugin-lifecycle.html
blob4175edc795b3c8f266ccdc246c2146c6963403b2
1 <!doctype HTML>
2 <style>
3 #plugin {
4 width: 150px;
5 height: 150px;
6 border: 1px solid black;
8 </style>
9 <embed id="plugin" type="application/x-plugin-placeholder-test"></embed>
10 <script>
11 onload = function() {
12 if (window.testRunner) {
13 window.testRunner.waitUntilDone();
14 // Need to paint two frames in order to allow the plugin to properly load.
15 // TODO(chrishtr): find out why and fix.
16 requestAnimationFrame(function() {
17 requestAnimationFrame(function() {
18 requestAnimationFrame(function() {
19 window.testRunner.notifyDone();
20 });
21 });
22 });
25 </script>