Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / web-animations-api / font-builder-crash.html
blob77c7d25fc3e7360a366e459bd3b7de6eda838a2d
1 <!DOCTYPE html>
2 <div id="target">This test passes if it does not crash.</div>
3 <script>
4 target.animate([
5 {fontSize: 'large', fontWeight: 'normal'},
6 {fontSize: 'small', fontWeight: 'bold'},
7 ], 1);
8 if (window.testRunner) {
9 testRunner.dumpAsText();
10 testRunner.waitUntilDone();
12 requestAnimationFrame(function() {
13 if (window.testRunner) {
14 testRunner.notifyDone();
16 });
17 </script>