summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/css-parser/large-percent-number-crash.html
blob: d4920f3d35e4ae19311eb614d1929cdfe921854b (plain)
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script>
test(() => {
  document.documentElement.style.shapeOutside = 'circle(at 1e200% -1e200%)';
  getComputedStyle(document.documentElement).shapeOutside;
}, 'This test passes if it does not crash.');
</script>