Changeset 134401 in webkit
- Timestamp:
- Nov 13, 2012, 5:20:25 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r134400 r134401 1 2012-11-13 Csaba Osztrogonác <ossy@webkit.org> 2 3 [Qt] Enable Mutation observer 4 https://bugs.webkit.org/show_bug.cgi?id=102066 5 6 Reviewed by Pavel Feldman. 7 8 * platform/qt/TestExpectations: Unskip now passing tests. 9 1 10 2012-11-12 Mike Reed <reed@google.com> 2 11 -
trunk/LayoutTests/platform/qt-5.0/fast/js/global-constructors-expected.txt
r125172 r134401 321 321 PASS WebKitCSSRegionRule.toString() is '[object WebKitCSSRegionRuleConstructor]' 322 322 PASS WebKitCSSTransformValue.toString() is '[object WebKitCSSTransformValueConstructor]' 323 FAIL WebKitMutationObserver.toString() should be [object WebKitMutationObserverConstructor]. Was [object MutationObserverConstructor]. 323 324 PASS WebKitPoint.toString() is '[object WebKitPointConstructor]' 324 325 PASS WebKitTransitionEvent.toString() is '[object WebKitTransitionEventConstructor]' -
trunk/LayoutTests/platform/qt/TestExpectations
r134399 r134401 280 280 fast/dom/MicroData 281 281 282 # ENABLE(MUTATION_OBSERVERS) is disabled283 fast/dom/HTMLElement/class-list-quirks.html284 fast/dom/HTMLElement/class-list.html285 fast/mutation/added-out-of-order.html286 fast/mutation/callback-arguments.html287 fast/mutation/clear-transient-without-delivery.html288 fast/mutation/create-during-delivery.html289 fast/mutation/cross-document.html290 fast/mutation/database-callback-delivery.html291 fast/mutation/delivery-order.html292 fast/mutation/disconnect-cancel-pending.html293 fast/mutation/document-fragment-insertion.html294 fast/mutation/inline-event-listener.html295 fast/mutation/mutate-during-delivery.html296 fast/mutation/mutation-observer-constructor.html297 fast/mutation/mutation-callback-non-element-crash.html298 fast/mutation/mutation-record-nullity.html299 fast/mutation/observe-attributes.html300 fast/mutation/observe-characterdata.html301 fast/mutation/observe-childList.html302 fast/mutation/observe-exceptions.html303 fast/mutation/observe-subtree.html304 fast/mutation/removed-out-of-order.html305 fast/mutation/shadow-dom.html306 fast/mutation/takeRecords.html307 fast/mutation/transient-gc-crash.html308 309 # ENABLE(MUTATION_OBSERVERS) is disabled (fails after r134379)310 http/tests/inspector/network/network-sidebar-width.html311 http/tests/inspector/resource-tree/resource-tree-reload.html312 http/tests/inspector/search/search-in-concatenated-script.html313 http/tests/inspector/search/search-in-script.html314 inspector/console/console-api-on-call-frame.html315 inspector/debugger/callstack-placards-discarded.html316 inspector/debugger/copy-stack-trace.html317 inspector/debugger/debugger-activation-crash2.html318 inspector/debugger/debugger-breakpoints-not-activated-on-reload.html319 inspector/debugger/debugger-completions-on-call-frame.html320 inspector/debugger/debugger-eval-on-call-frame.html321 inspector/debugger/debugger-eval-while-paused.html322 inspector/debugger/debugger-expand-scope.html323 inspector/debugger/debugger-no-nested-pause.html324 inspector/debugger/debugger-pause-in-eval-script.html325 inspector/debugger/debugger-pause-in-internal.html326 inspector/debugger/debugger-pause-on-blocked-event-handler.html327 inspector/debugger/debugger-pause-on-blocked-script-injection.html328 inspector/debugger/debugger-pause-on-blocked-script-url.html329 inspector/debugger/debugger-pause-on-debugger-statement.html330 inspector/debugger/debugger-pause-on-exception.html331 inspector/debugger/debugger-pause-on-failed-assertion.html332 inspector/debugger/debugger-proto-property.html333 inspector/debugger/debugger-reload-on-pause.html334 inspector/debugger/debugger-set-breakpoint-regex.html335 inspector/debugger/debugger-step-in.html336 inspector/debugger/debugger-step-out.html337 inspector/debugger/debugger-step-over.html338 inspector/debugger/debugger-suspend-active-dom-objects.html339 inspector/debugger/eval-on-pause-blocked.html340 inspector/debugger/open-close-open.html341 inspector/debugger/pause-in-internal-script.html342 inspector/debugger/reveal-execution-line.html343 inspector/debugger/script-formatter-breakpoints.html344 inspector/debugger/script-formatter-console.html345 inspector/debugger/script-formatter-search.html346 inspector/debugger/script-formatter.html347 inspector/debugger/scripts-panel.html348 inspector/debugger/set-breakpoint.html349 inspector/debugger/source-frame-count.html350 inspector/debugger/source-frame.html351 inspector/debugger/source-url-comment.html352 inspector/debugger/watch-expressions-panel-switch.html353 inspector/extensions/extensions-resources.html354 inspector/styles/css-live-edit.html355 inspector/styles/edit-inspector-stylesheet.html356 357 282 # Disable private names by default in WebCore 358 283 # https://bugs.webkit.org/show_bug.cgi?id=87088 … … 524 449 # Resource Timing is not enable yet, skip it. 525 450 webkit.org/b/61138 http/tests/w3c/webperf/submission/Intel/resource-timing 451 452 # Missing eventSender.scheduleAsynchronousKeyDown() implementation 453 fast/mutation/inline-event-listener.html 526 454 527 455 # =========================================================================== # -
trunk/LayoutTests/platform/qt/fast/js/constructor-length-expected.txt
r126404 r134401 46 46 PASS WebKitAnimationEvent.length is 2 47 47 PASS WebKitCSSMatrix.length is 1 48 FAIL WebKitMutationObserver.length should be 1. Threw exception ReferenceError: Can't find variable: WebKitMutationObserver 48 PASS WebKitMutationObserver.length is 1 49 49 PASS WebKitPoint.length is 2 50 50 PASS WebKitTransitionEvent.length is 2 -
trunk/Source/WebCore/ChangeLog
r134396 r134401 1 2012-11-13 Csaba Osztrogonác <ossy@webkit.org> 2 3 [Qt] Enable Mutation observer 4 https://bugs.webkit.org/show_bug.cgi?id=102066 5 6 Reviewed by Pavel Feldman. 7 8 * DerivedSources.pri: Add missing IDL files. 9 1 10 2012-11-13 Kentaro Hara <haraken@chromium.org> 2 11 -
trunk/Source/WebCore/DerivedSources.pri
r133326 r134401 248 248 $$PWD/dom/MessageEvent.idl \ 249 249 $$PWD/dom/MessagePort.idl \ 250 $$PWD/dom/MutationCallback.idl \ 250 251 $$PWD/dom/MutationEvent.idl \ 252 $$PWD/dom/MutationObserver.idl \ 253 $$PWD/dom/MutationRecord.idl \ 251 254 $$PWD/dom/NamedNodeMap.idl \ 252 255 $$PWD/dom/Node.idl \ -
trunk/Tools/ChangeLog
r134398 r134401 1 2012-11-13 Csaba Osztrogonác <ossy@webkit.org> 2 3 [Qt] Enable Mutation observer 4 https://bugs.webkit.org/show_bug.cgi?id=102066 5 6 Reviewed by Pavel Feldman. 7 8 * qmake/mkspecs/features/features.pri: 9 1 10 2012-11-13 Xiaobo Wang <xbwang@torchmobile.com.cn> 2 11 -
trunk/Tools/qmake/mkspecs/features/features.pri
r134243 r134401 80 80 ENABLE_MHTML=1 \ 81 81 ENABLE_MICRODATA=0 \ 82 ENABLE_MUTATION_OBSERVERS= 0\82 ENABLE_MUTATION_OBSERVERS=1 \ 83 83 ENABLE_NAVIGATOR_CONTENT_UTILS=0 \ 84 84 ENABLE_NETSCAPE_PLUGIN_API=0 \
Note:
See TracChangeset
for help on using the changeset viewer.