chromium/third_party/blink/web_tests/animations/stability/option-element-crash.html

<title>Test if it doesn't crash when option is animated</title>
<object>
  <div>
    <option id="testA"></option>
  </div>
</option>

<video>
  <option id="testB"></option>
</video>

<video>
  <object>
    <option id="testC"></option>
  </object>
</video>

<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script>
setup({single_test: true});
testA.animate([{fontSize: 'large'}, {fontSize: '24px'}], 1000);
testB.animate([{fontSize: '6rem'}, {fontSize: 'x-large'}], 1000);
try {
  testC.animate([{outlineColor: 'invert'}, {outlineColor: 'inherit'}], 1000);
} catch (e) {}
done();
</script>