diff options
author | Basilisk-Dev <basiliskdev@protonmail.com> | 2023-10-30 15:38:40 -0400 |
---|---|---|
committer | Basilisk-Dev <basiliskdev@protonmail.com> | 2023-10-30 15:38:40 -0400 |
commit | fc1697622c4086da9606f2f2b1b4886ef8f5c464 (patch) | |
tree | b6393c9c7253c2326a5f5a32f7492ec5d92d0c8c /dom | |
parent | ecb8ae6aba40290bb1adb12991e5515f91f00b80 (diff) | |
download | uxp-fc1697622c4086da9606f2f2b1b4886ef8f5c464.tar.gz |
No Issue - StructuredClone serialize and deserialize should treat back reference consistently
Backport of https://bugzilla.mozilla.org/show_bug.cgi?id=1538622
Diffstat (limited to 'dom')
-rw-r--r-- | dom/base/test/mochitest.ini | 1 | ||||
-rw-r--r-- | dom/tests/mochitest/bugs/test_bug743615.html | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/dom/base/test/mochitest.ini b/dom/base/test/mochitest.ini index 27a970c21a..6f5e0ea835 100644 --- a/dom/base/test/mochitest.ini +++ b/dom/base/test/mochitest.ini @@ -764,6 +764,7 @@ skip-if = debug == false [test_setting_opener.html] [test_simplecontentpolicy.html] skip-if = e10s # Bug 1156489. +[test_structuredclone_backref.html] [test_text_wholeText.html] [test_textnode_normalize_in_selection.html] [test_textnode_split_in_selection.html] diff --git a/dom/tests/mochitest/bugs/test_bug743615.html b/dom/tests/mochitest/bugs/test_bug743615.html index 39e978ddad..044e6509dc 100644 --- a/dom/tests/mochitest/bugs/test_bug743615.html +++ b/dom/tests/mochitest/bugs/test_bug743615.html @@ -54,8 +54,7 @@ function windowMessage(evt) { ok(checkPattern(imageData, pattern), 'postMessage from self worked correctly'); - // We're not spec compliant on this yet. - todo_is(imageData.data, evt.data.dataRef, + is(imageData.data, evt.data.dataRef, 'Should have backrefs for imagedata buffer'); // Make a new pattern, and send it to a worker. |