<!DOCTYPE html> | |
<title>Canvas test: size.attributes.parse.whitespace</title> | |
<script src="../tests.js"></script> | |
<link rel="stylesheet" href="../tests.css"> | |
<link rel="prev" href="size.attributes.parse.space.html" title="size.attributes.parse.space"> | |
<link rel="next" href="size.attributes.parse.plus.html" title="size.attributes.parse.plus"> | |
<body class="show_output"> | |
<p> | |
<a href="size.attributes.parse.space.html" accesskey="p" title="[p] size.attributes.parse.space"><</a> | |
<a href="index.html">[index]</a> | |
<a href="size.attributes.parse.plus.html" accesskey="n" title="[n] size.attributes.parse.plus">></a> | |
<h1><a href="index.size.html">size</a>.<a href="index.size.attributes.html">attributes</a>.<a href="index.size.attributes.parse.html">parse</a>.whitespace</h1> | |
<p class="desc">Parsing of non-negative integers</p> | |
<div class="refs">References: | |
<ul> | |
<li><a href="spec.html#testrefs.size.nonnegativeinteger">size.nonnegativeinteger</a> | |
</ul> | |
</div> | |
<p class="output">Actual output:</p> | |
<canvas id="c" class="output" width=" | |
100" height=" | |
100"><p class="fallback">FAIL (fallback content)</p></canvas> | |
<p class="output expectedtext">Expected output:<p><img src="size.attributes.parse.whitespace.png" class="output expected" id="expected" alt=""> | |
<ul id="d"></ul> | |
<script> | |
_addTest(function(canvas, ctx) { | |
_assertSame(canvas.width, 100, "canvas.width", "100"); | |
_assertSame(canvas.height, 100, "canvas.height", "100"); | |
_assertEqual(window.getComputedStyle(canvas, null).getPropertyValue("width"), "100px", "window.getComputedStyle(canvas, null).getPropertyValue(\"width\")", "\"100px\""); | |
}); | |
</script> | |