Skip to content

Commit

Permalink
[css-typed-om] import latest update to css/css-typed-om/CSSMatrixComp…
Browse files Browse the repository at this point in the history
…onent-DOMMatrix-mutable.html

https://bugs.webkit.org/show_bug.cgi?id=246007

Reviewed by Tim Nguyen.

Import the changes made in WPT PR 36238.

* LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/CSSMatrixComponent-DOMMatrix-mutable-expected.txt:
* LayoutTests/imported/w3c/web-platform-tests/css/css-typed-om/CSSMatrixComponent-DOMMatrix-mutable.html:

Canonical link: https://commits.webkit.org/255121@main
  • Loading branch information
graouts committed Oct 4, 2022
1 parent 5472d07 commit 9bc8b86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -1,3 +1,3 @@

FAIL CSSMatrixComponent's matrix attribute is mutable Can't find variable: CSSMatrixTransformComponent
PASS CSSMatrixComponent's matrix attribute is mutable

Expand Up @@ -8,7 +8,7 @@
<div id="log"></div>
<script>
test(function() {
var component = new CSSMatrixTransformComponent(new DOMMatrix());
var component = new CSSMatrixComponent(new DOMMatrix());
assert_equals(component.matrix.m11, 1, 'DOMMatrix expected to be initialized to identity');
component.matrix.m11 = 2;
assert_equals(component.matrix.m11, 2, 'modification of m11 component of DOMMatrix expected to succeed');
Expand Down

0 comments on commit 9bc8b86

Please sign in to comment.