Auto merge of #18317 - cbrewster:custom_elements_enable, r=jdm

Enable Custom Elements by Default

<!-- Please describe your changes on the following line: -->

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors
- [X] These changes fix #9372 (github issue number if applicable).

<!-- Either: -->
- [ ] There are tests for these changes OR
- [X] These changes do not require tests because enabling pref flag.

<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/18317)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-08-31 19:57:29 -05:00 committed by GitHub
commit e10e56930f
6 changed files with 5 additions and 8 deletions

View file

@ -3,7 +3,7 @@
"dom.bluetooth.testing.enabled": false, "dom.bluetooth.testing.enabled": false,
"dom.canvas-text.enabled": false, "dom.canvas-text.enabled": false,
"dom.compositionevent.enabled": false, "dom.compositionevent.enabled": false,
"dom.customelements.enabled": false, "dom.customelements.enabled": true,
"dom.forcetouch.enabled": false, "dom.forcetouch.enabled": false,
"dom.gamepad.enabled": false, "dom.gamepad.enabled": false,
"dom.mouseevent.which.enabled": false, "dom.mouseevent.which.enabled": false,

View file

@ -1 +0,0 @@
prefs: [dom.customelements.enabled:true]

View file

@ -1,5 +0,0 @@
[attribute-changed-callback.html]
type: testharness
[Custom Elements: attributeChangedCallback]
expected: FAIL

View file

@ -21,6 +21,7 @@
[CORS [PUT\] [several headers\], server allows] [CORS [PUT\] [several headers\], server allows]
expected: FAIL expected: FAIL
[cors-preflight.any.worker.html] [cors-preflight.any.worker.html]
type: testharness type: testharness
[CORS [PATCH\], server allows] [CORS [PATCH\], server allows]
@ -43,3 +44,4 @@
[CORS [PUT\] [several headers\], server allows] [CORS [PUT\] [several headers\], server allows]
expected: FAIL expected: FAIL

View file

@ -27292,7 +27292,7 @@
"testharness" "testharness"
], ],
"mozilla/interfaces.html": [ "mozilla/interfaces.html": [
"48028c5a9b401bab52a155c8820140a65dbc2f11", "a7ed38b6069caffd87d9573978e6ef9938d87753",
"testharness" "testharness"
], ],
"mozilla/interfaces.js": [ "mozilla/interfaces.js": [

View file

@ -43,6 +43,7 @@ test_interfaces([
"DOMRect", "DOMRect",
"DOMRectReadOnly", "DOMRectReadOnly",
"Comment", "Comment",
"CustomElementRegistry",
"CustomEvent", "CustomEvent",
"Document", "Document",
"DocumentFragment", "DocumentFragment",