Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/css/geometry-1/DOMMatrix-001.html

Issue 2873663002: Import WPT css/geometry-1 (Closed)
Patch Set: x Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt/css/geometry-1/DOMMatrix-001-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/external/wpt/css/geometry-1/DOMMatrix-001.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/css/geometry-1/DOMMatrix-001.html b/third_party/WebKit/LayoutTests/external/wpt/css/geometry-1/DOMMatrix-001.html
index c054e895eaafcbd57b9277b5bd14a854746cd8a0..1ff5a9b98d1c4bbcd442575996f0bdb5e8b91792 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/css/geometry-1/DOMMatrix-001.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/css/geometry-1/DOMMatrix-001.html
@@ -3,18 +3,17 @@
<head>
<title>Geometry Interfaces: DOMMatrix and DOMMatrixReadOnly constructors</title>
<link rel="author" title="Dirk Schulze" href="mailto:dschulze@adobe.com" />
- <link rel="help" href="http://www.w3.org/TR/geometry-1/#DOMMatrix">
- <link rel="help" href="http://www.w3.org/TR/geometry-1/#dommatrix-constructors">
- <link rel="help" href="http://www.w3.org/TR/geometry-1/#dom-dommatrix-dommatrix">
+ <link rel="help" href="https://drafts.fxtf.org/geometry/#DOMMatrix">
+ <link rel="help" href="https://drafts.fxtf.org/geometry/#dommatrix-constructors">
+ <link rel="help" href="https://drafts.fxtf.org/geometry/#dom-dommatrix-dommatrix">
<script src="support/dommatrix-test-util.js"></script>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
- <p>Test DOMMatrix and DOMMatrixReadOnly contructors</p>
<div id="log"></div>
<script>
- initial = {
+ var initial = {
m11: 1, m21: 0, m31: 0, m41: 0,
m12: 0, m22: 1, m32: 0, m42: 0,
m13: 0, m23: 0, m33: 1, m43: 0,
@@ -22,7 +21,7 @@
is2D: true,
isIdentity: true
};
- scaleTranslate2D = {
+ var scaleTranslate2D = {
m11: 2, m21: 0, m31: 0, m41: 10,
m12: 0, m22: 2, m32: 0, m42: 10,
m13: 0, m23: 0, m33: 1, m43: 0,
@@ -30,116 +29,165 @@
is2D: false,
isIdentity: false
};
+ ["DOMMatrix", "DOMMatrixReadOnly"].forEach(function(constr) {
+ test(function() {
+ checkDOMMatrix(new self[constr](), initial);
+ }, `new ${constr}()`);
- test(function() {
- checkDOMMatrix(new DOMMatrix(), initial);
- },'testConstructor0');
- test(function() {
- checkDOMMatrix(new DOMMatrix(new DOMMatrix()), initial);
- },'testConstructor1');
- test(function() {
- var float32Array = new Float32Array(
- 2.0, 0.0, 0.0, 0.0,
+ test(function() {
+ checkDOMMatrix(new self[constr](undefined), initial);
+ }, `new ${constr}(undefined)`);
+
+ test(function() {
+ checkDOMMatrix(new self[constr](new self[constr]()), initial);
+ }, `new ${constr}(new ${constr}())`);
+
+ ['none',
+ ' none',
+ 'none ',
+ 'NONE',
+ 'none/**/',
+ '/**/none',
+ '',
+ ].forEach(function(string) {
+ test(function() {
+ checkDOMMatrix(new self[constr](string), initial);
+ }, `new ${constr}(${format_value(string)})`);
+ });
+
+ test(function() {
+ var float32Array = new Float32Array(
+ 2.0, 0.0, 0.0, 0.0,
+ 0.0, 2.0, 0.0, 0.0,
+ 0.0, 0.0, 1.0, 0.0,
+ 10.0, 10.0, 0.0, 1.0);
+ checkDOMMatrix(new self[constr](float32Array), scaleTranslate2D, false);
+ }, `new ${constr}(float32Array) 16 elements`);
+
+ test(function() {
+ var float32Array = new Float32Array(2.0, 0.0, 0.0, 2.0, 10.0, 10.0);
+ checkDOMMatrix(new self[constr](float32Array), scaleTranslate2D);
+ }, `new ${constr}(float32Array) 6 elements`);
+
+ test(function() {
+ var float64Array = new Float64Array([
+ 2.0, 0.0, 0.0, 0.0,
+ 0.0, 2.0, 0.0, 0.0,
+ 0.0, 0.0, 1.0, 0.0,
+ 10.0, 10.0, 0.0, 1.0]);
+ checkDOMMatrix(new self[constr](float64Array), scaleTranslate2D, false);
+ }, `new ${constr}(float64Array) 16 elements`);
+
+ test(function() {
+ var float64Array = new Float64Array(2.0, 0.0, 0.0, 2.0, 10.0, 10.0);
+ checkDOMMatrix(new self[constr](float64Array), scaleTranslate2D);
+ }, `new ${constr}((float64Array) 6 elements`);
+
+ [
+ [2.0, 0.0, 0.0, 0.0,
0.0, 2.0, 0.0, 0.0,
0.0, 0.0, 1.0, 0.0,
- 10.0, 10.0, 0.0, 1.0);
- checkDOMMatrix(new DOMMatrix(float32Array), scaleTranslate2D, false);
- },'testConstructor2');
- test(function() {
- var float32Array = new Float32Array(2.0, 0.0, 0.0, 2.0, 10.0, 10.0);
- checkDOMMatrix(new DOMMatrix(float32Array), scaleTranslate2D);
- },'testConstructor3');
- test(function() {
- var float64Array = new Float64Array([
- 2.0, 0.0, 0.0, 0.0,
+ 10.0, 10.0, 0.0, 1.0],
+ [2.0, 0.0, 0.0, 2.0, 10.0, 10.0],
+ ].forEach(function(sequence) {
+ test(function() {
+ checkDOMMatrix(new self[constr](sequence), scaleTranslate2D, false);
+ }, `new ${constr}(sequence) ${sequence.length} elements`);
+ });
+
+ ['scale(2) translateX(5px) translateY(5px)',
+ 'scale(2 2) translateX(5) translateY(5)',
+ 'scale(2, 2), translateX(5) ,translateY(5)',
+ ].forEach(function(string) {
+ test(function() {
+ checkDOMMatrix(new self[constr](string), scaleTranslate2D);
+ }, `new ${constr}(${format_value(string)})`);
+ });
+
+ ['translateX (5px)',
+ 'scale(2)translateX(5px)',
+ 'translateX(5em)',
+ 'translateX(5ex)',
+ 'translateX(5ch)',
+ 'translateX(5rem)',
+ 'translateX(5vw)',
+ 'translateX(5vh)',
+ 'translateX(5vmin)',
+ 'translateX(5vmax)',
+ 'translateX(5%)',
+ ' ',
+ '/**/',
+ '\0',
+ ';',
+ 'none;',
+ 'null',
+ null, // is converted to 'null' by IDL
+ 'undefined',
+ 'inherit',
+ 'initial',
+ 'unset',
+ ].forEach(function(string) {
+ test(function() {
+ assert_throws('SyntaxError', function() { new self[constr](string); });
+ }, `new ${constr}(${format_value(string)})`);
+ });
+
+ test(function() {
+ var sequence = [
+ 2.0, 1.0, 0.0, 0.0,
+ 1.0, 2.0, 0.0, 0.0,
+ 0.0, 0.0, 1.0, 0.0,
+ 10.0, 10.0, 0.0, 1.0];
+ checkDOMMatrix(new self[constr](sequence), {
+ m11: 2, m21: 1, m31: 0, m41: 10,
+ m12: 1, m22: 2, m32: 0, m42: 10,
+ m13: 0, m23: 0, m33: 1, m43: 0,
+ m14: 0, m24: 0, m34: 0, m44: 1,
+ is2D: false,
+ isIdentity: false
+ });
+ }, `new ${constr}(sequence)`);
+
+ test(function() {
+ var matrix = new self[constr]([
+ 2.0, 1.0, 0.0, 0.0,
+ 1.0, 2.0, 0.0, 0.0,
+ 0.0, 0.0, 1.0, 0.0,
+ 10.0, 10.0, 0.0, 1.0]);
+ checkDOMMatrix(new self[constr](matrix), {
+ m11: 2, m21: 1, m31: 0, m41: 10,
+ m12: 1, m22: 2, m32: 0, m42: 10,
+ m13: 0, m23: 0, m33: 1, m43: 0,
+ m14: 0, m24: 0, m34: 0, m44: 1,
+ is2D: false,
+ isIdentity: false
+ });
+ }, `new ${constr}(matrix)`);
+
+ ['scale(2, 2), translateX(5px) translateY(5px)',
+ ].forEach(function(string) {
+ test(function() {
+ assert_throws("SyntaxError", function() { new self[constr](string); });
+ }, `new ${constr}(${format_value(string)})`);
+ });
+
+ [
+ [2.0, 0.0, 0.0, 0.0,
0.0, 2.0, 0.0, 0.0,
0.0, 0.0, 1.0, 0.0,
- 10.0, 10.0, 0.0, 1.0]);
- checkDOMMatrix(new DOMMatrix(float64Array), scaleTranslate2D, false);
- },'testConstructor4');
- test(function() {
- var float64Array = new Float64Array(2.0, 0.0, 0.0, 2.0, 10.0, 10.0);
- checkDOMMatrix(new DOMMatrix(float64Array), scaleTranslate2D);
- },'testConstructor5');
- test(function() {
- var sequence = [
- 2.0, 0.0, 0.0, 0.0,
+ 10.0, 10.0, 0.0, 2.0, 0.0], // 17 elements
+ [2.0, 0.0, 0.0, 0.0,
0.0, 2.0, 0.0, 0.0,
0.0, 0.0, 1.0, 0.0,
- 10.0, 10.0, 0.0, 1.0];
- checkDOMMatrix(new DOMMatrix(sequence), scaleTranslate2D, false);
- },'testConstructor6');
- test(function() {
- var sequence = [ 2.0, 0.0, 0.0, 2.0, 10.0, 10.0];
- checkDOMMatrix(new DOMMatrix(float64Array), scaleTranslate2D);
- },'testConstructor7');
- test(function() {
- var string = 'scale(2) translateX(5px) translateY(5px)';
- checkDOMMatrix(new DOMMatrix(string), scaleTranslate2D);
- },'testConstructor8');
- test(function() {
- var string = 'scale(2 2) translateX(5) translateY(5)';
- checkDOMMatrix(new DOMMatrix(string), scaleTranslate2D);
- },'testConstructor9');
- test(function() {
- var string = 'scale(2, 2), translateX(5) ,translateY(5)';
- checkDOMMatrix(new DOMMatrix(string), scaleTranslate2D);
- },'testConstructor10');
- test(function() {
- assert_throws('SyntaxError', function() { new DOMMatrix('translateX (5px)'); });
- assert_throws('SyntaxError', function() { new DOMMatrix('scale(2)translateX(5px)'); });
- assert_throws('SyntaxError', function() { new DOMMatrix('translateX(5em)'); });
- assert_throws('SyntaxError', function() { new DOMMatrix('translateX(5ex)'); });
- assert_throws('SyntaxError', function() { new DOMMatrix('translateX(5ch)'); });
- assert_throws('SyntaxError', function() { new DOMMatrix('translateX(5rem)'); });
- assert_throws('SyntaxError', function() { new DOMMatrix('translateX(5vw)'); });
- assert_throws('SyntaxError', function() { new DOMMatrix('translateX(5vh)'); });
- assert_throws('SyntaxError', function() { new DOMMatrix('translateX(5vmin)'); });
- assert_throws('SyntaxError', function() { new DOMMatrix('translateX(5vmax)'); });
- assert_throws('SyntaxError', function() { new DOMMatrix('translateX(5%)'); });
- },'testConstructor11');
- test(function() {
- var sequence = [
- 2.0, 1.0, 0.0, 0.0,
- 1.0, 2.0, 0.0, 0.0,
- 0.0, 0.0, 1.0, 0.0,
- 10.0, 10.0, 0.0, 1.0];
- checkDOMMatrix(new DOMMatrix(sequence), {
- m11: 2, m21: 1, m31: 0, m41: 10,
- m12: 1, m22: 2, m32: 0, m42: 10,
- m13: 0, m23: 0, m33: 1, m43: 0,
- m14: 0, m24: 0, m34: 0, m44: 1,
- is2D: false,
- isIdentity: false
- });
- },'testConstructor12');
- test(function() {
- var matrix = new DOMMatrix([
- 2.0, 1.0, 0.0, 0.0,
- 1.0, 2.0, 0.0, 0.0,
- 0.0, 0.0, 1.0, 0.0,
- 10.0, 10.0, 0.0, 1.0]);
- checkDOMMatrix(new DOMMatrix(matrix), {
- m11: 2, m21: 1, m31: 0, m41: 10,
- m12: 1, m22: 2, m32: 0, m42: 10,
- m13: 0, m23: 0, m33: 1, m43: 0,
- m14: 0, m24: 0, m34: 0, m44: 1,
- is2D: false,
- isIdentity: false
+ 10.0, 10.0, 0.0], // 15 elements
+ [2.0, 0.0, 0.0, 2.0, 10.0], // 5 elements
+ [], // 0 elements
+ ].forEach(function(sequence) {
+ test(function() {
+ assert_throws(new TypeError(), function() { new self[constr](sequence); });
+ }, `new ${constr}(sequence) ${sequence.length} elements`);
});
- },'testConstructor13');
- test(function() {
- assert_throws(new TypeError(), function() { new DOMMatrixReadOnly(); });
- },'testConstructorIllegal0');
- test(function() {
- var string = 'scale(2, 2), translateX(5px) translateY(5px)';
- assert_throws(new TypeError(), function() { new DOMMatrixReadOnly(string); });
- },'testConstructorIllegal1');
- test(function() {
- var sequence = [ 2.0, 0.0, 0.0, 2.0, 10.0];
- assert_throws(new TypeError(), function() { new DOMMatrixReadOnly(sequence); });
- },'testConstructorIllegal2');
-
+ });
</script>
</body>
</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt/css/geometry-1/DOMMatrix-001-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698