Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fullscreen / api / document-onfullscreenerror.html
blob1c39cf6872b65eb831990611284e9b15679c5778
1 <!DOCTYPE html>
2 <title>Document.onfullscreenerror</title>
3 <script src="../../resources/testharness.js"></script>
4 <script src="../../resources/testharnessreport.js"></script>
5 <div id="log"></div>
6 <script>
7 async_test(function(t)
9 assert_equals(document.onfullscreenerror, null, "initial onfullscreenerror");
10 document.onfullscreenerror = t.step_func_done();
11 document.createElement("a").requestFullscreen();
12 });
13 </script>