Skip to content

Commit

Permalink
Merge pull request #236 from vyv03354/mozbug885765
Browse files Browse the repository at this point in the history
Fix syntax errors
  • Loading branch information
jgraham committed Jul 3, 2013
2 parents 58c3503 + 61f760c commit 1a59147
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webgl/texImage2D.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
});
assert_throws(new TypeError(), function() {
gl.texImage2D(0, 0, 0, 0, 0, { get width() { throw 7 }, get height() { throw 7 }, data: new Uint8ClampedArray(10) });
};
});
});
</script>
2 changes: 1 addition & 1 deletion webgl/texSubImage2D.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
});
assert_throws(new TypeError(), function() {
gl.texSubImage2D(0, 0, 0, 0, 0, 0, { get width() { throw 7 }, get height() { throw 7 }, data: new Uint8ClampedArray(10) });
};
});
});
</script>

0 comments on commit 1a59147

Please sign in to comment.