https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 12ff58441c7624b898d1f5b509264907f7fd0e07 authored by Luke Bjerring on 23 March 2018, 17:36:39 UTC
Support partial dictionaries
Tip revision: 12ff584
element-request-fullscreen-svg-svg-manual.html
<!DOCTYPE html>
<title>Element#requestFullscreen() for SVG svg element</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../trusted-click.js"></script>
<div id="log"></div>
<svg></svg>
<script>
async_test(function(t)
{
    var svg = document.querySelector("svg");
    assert_true(svg instanceof SVGSVGElement);
    trusted_request(t, svg, document.body);
    document.onfullscreenchange = t.step_func_done();
    document.onfullscreenerror = t.unreached_func("fullscreenerror event");
});
</script>
back to top