chromium/third_party/blink/web_tests/fast/shapes/shape-outside-floats/shape-outside-uncached-gradient.html

<!DOCTYPE html>
<html>
<!--
This is a regression test for https://code.google.com/p/chromium/issues/detail?id=378469
-->
<head>
<style>
#image-shape {
    float: left;
    shape-outside: linear-gradient(magenta, currentColor); // currentColor prevents gradient from being cached
    width: 100px;
    height: 100px;
}
</style>
<div>This test should not crash.</div>
<div>
  <div id="image-shape"></div>
  Hello World
</div>
<script>
  if (window.testRunner)
      testRunner.dumpAsText();
</script>
</body>
</html>