Skip to content

Commit

Permalink
Enable MutationObserver by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdm committed Jul 25, 2018
1 parent c71fafa commit 5d943c6
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 47 deletions.
2 changes: 1 addition & 1 deletion resources/prefs.json
Expand Up @@ -8,7 +8,7 @@
"dom.gamepad.enabled": false,
"dom.microdata.testing.enabled": true,
"dom.mouseevent.which.enabled": false,
"dom.mutation_observer.enabled": false,
"dom.mutation_observer.enabled": true,
"dom.permissions.enabled": false,
"dom.permissions.testing.allowed_in_nonsecure_contexts": false,
"dom.serviceworker.timeout_seconds": 60,
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

@@ -0,0 +1,9 @@
[microtasks-and-constructors.html]
[Microtasks evaluate immediately when the stack is empty inside the parser]
expected: FAIL

[Microtasks evaluate immediately when the stack is empty inside the parser, causing the checks on no attributes to fail]
expected: FAIL

[Microtasks evaluate afterward when the stack is not empty using createElement()]
expected: FAIL
@@ -1,6 +1,5 @@
[task_microtask_ordering.html]
type: testharness
expected: TIMEOUT
[Level 1 bossfight (synthetic click)]
expected: FAIL
bug: https://github.com/servo/servo/issues/1980
expected: TIMEOUT

Expand Up @@ -34,18 +34,6 @@
[unhandledrejection: from Promise.reject, indirected through Promise.all]
expected: TIMEOUT

[delayed handling: a microtask delay before attaching a handler prevents both events (Promise.reject-created promise)]
expected: FAIL

[delayed handling: a microtask delay before attaching a handler prevents both events (immediately-rejected new Promise-created promise)]
expected: FAIL

[delayed handling: a microtask delay before attaching the handler, and before rejecting the promise, indirected through Promise.all]
expected: FAIL

[microtask nesting: attaching a handler inside a combination of mutationObserverMicrotask + promise microtasks]
expected: FAIL

[delayed handling: a nested-task delay before attaching a handler causes unhandledrejection]
expected: TIMEOUT

Expand Down
2 changes: 1 addition & 1 deletion tests/wpt/mozilla/meta/MANIFEST.json
Expand Up @@ -65267,7 +65267,7 @@
"testharness"
],
"mozilla/interfaces.html": [
"365c76c771b3d79a671b04047923f5644efb9b93",
"079065a1870bb9d3f790e9e8a3e17417c7195204",
"testharness"
],
"mozilla/interfaces.js": [
Expand Down
2 changes: 2 additions & 0 deletions tests/wpt/mozilla/tests/mozilla/interfaces.html
Expand Up @@ -152,6 +152,8 @@
"MimeType",
"MimeTypeArray",
"MouseEvent",
"MutationObserver",
"MutationRecord",
"NamedNodeMap",
"Navigator",
"Node",
Expand Down

0 comments on commit 5d943c6

Please sign in to comment.