mirror of
https://github.com/servo/servo.git
synced 2025-07-16 03:43:38 +01:00
28 lines
881 B
HTML
28 lines
881 B
HTML
<!DOCTYPE html>
|
|
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
|
|
<title>OffscreenCanvas test: 2d.path.lineTo.nonfinite.details</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/common/canvas-tests.js"></script>
|
|
|
|
<h1>2d.path.lineTo.nonfinite.details</h1>
|
|
<p class="desc">lineTo() with Infinity/NaN for first arg still converts the second arg</p>
|
|
|
|
|
|
<script>
|
|
var t = async_test("lineTo() with Infinity/NaN for first arg still converts the second arg");
|
|
t.step(function() {
|
|
|
|
var offscreenCanvas = new OffscreenCanvas(100, 50);
|
|
var ctx = offscreenCanvas.getContext('2d');
|
|
|
|
for (var arg1 of [Infinity, -Infinity, NaN]) {
|
|
var converted = false;
|
|
ctx.lineTo(arg1, { valueOf: function() { converted = true; return 0; } });
|
|
_assert(converted, "converted");
|
|
}
|
|
|
|
t.done();
|
|
|
|
});
|
|
</script>
|