gecko-dev/layout/style/crashtests/1290994-1.html
Hiroyuki Ikezoe 99d11e5e5f Bug 1290994 - Do not multiply 0 by infinity in nsCSSScanner::ScanNumber. r=heycam
Without this patch test cases 1290995-{1,2,3}.html causes an assertion.
1290995-4.html is hit by the assertion in this patch if we don't avoid the
multiplication.

MozReview-Commit-ID: AtPVyPtd0r8

--HG--
extra : rebase_source : 43dbbbb98eb95faa15774b206a5776f43b1ea072
2016-08-03 19:09:58 +09:00

12 lines
256 B
HTML

<!DOCTYPE html>
<html>
<script>
window.onload=function(){
var a = document.createElement("div");
document.documentElement.appendChild(a);
a.animate([{borderLeftColor:"black"},
{borderLeftColor:"hsl(0,0e309%,0%)"}]);
};
</script>
</html>