summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/web-animations-api/element-animate-font-style-crash.html
blob: 3db74bd46b8e0cba5616ba3e0ba4f6e2e54da019 (plain)
1
2
3
4
5
6
7
8
9
10
11
<div id="target">This test passes if it does not crash.</div>
<script>
target.animate([{fontStyle: "oblique"}, {fontStyle: "oblique"}], 1000);
if (window.testRunner) {
  testRunner.waitUntilDone();
  testRunner.dumpAsText();
  requestAnimationFrame(function() {
    testRunner.notifyDone();
  });
}
</script>