Changeset 73241 in webkit


Ignore:
Timestamp:
Dec 2, 2010 10:49:09 PM (13 years ago)
Author:
Laszlo Gombos
Message:

2010-12-02 Laszlo Gombos <Laszlo Gombos>

Reviewed by Andreas Kling.

[Qt] Enable Web Timing for Qt
https://bugs.webkit.org/show_bug.cgi?id=42433

  • fast/dom/webtiming-document-open-expected.txt: Add an extra line to the expected results.
  • platform/qt/Skipped: Enable Web Timing tests.
  • platform/qt/fast/dom/Window/window-property-descriptors-expected.txt: Add webkitPerformance property.

2010-12-02 Laszlo Gombos <Laszlo Gombos>

Reviewed by Andreas Kling.

[Qt] Enable Web Timing for Qt
https://bugs.webkit.org/show_bug.cgi?id=42433

  • features.pri: Enable Web Timing for trunk (but not yet for production)
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r73239 r73241  
     12010-12-02  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Reviewed by Andreas Kling.
     4
     5        [Qt] Enable Web Timing for Qt
     6        https://bugs.webkit.org/show_bug.cgi?id=42433
     7
     8        * fast/dom/webtiming-document-open-expected.txt:
     9          Add an extra line to the expected results.
     10
     11        * platform/qt/Skipped: Enable Web Timing tests.
     12
     13        * platform/qt/fast/dom/Window/window-property-descriptors-expected.txt:
     14          Add webkitPerformance property.
     15
    1162010-12-02  Yuta Kitamura  <yutak@chromium.org>
    217
  • trunk/LayoutTests/fast/dom/webtiming-document-open-expected.txt

    r72415 r73241  
    2727
    2828TEST COMPLETE
     29
  • trunk/LayoutTests/platform/qt/Skipped

    r73027 r73241  
    52035203# Web Timing is not enabled.
    52045204# https://bugs.webkit.org/show_bug.cgi?id=42433
    5205 fast/dom/Window/window-properties-performance.html
    5206 fast/dom/navigation-type-back-forward.html
    5207 fast/dom/navigation-type-navigate.html
    5208 fast/dom/navigation-type-reload.html
    52095205fast/dom/webtiming.html
    5210 fast/dom/webtiming-document-open.html
    5211 fast/dom/webtiming-navigate-within-document.html
    5212 http/tests/misc/webtiming-one-redirect.php
    5213 http/tests/misc/webtiming-two-redirects.php
    52145206
    52155207# Advanced credential handling
  • trunk/LayoutTests/platform/qt/fast/dom/Window/window-property-descriptors-expected.txt

    r72556 r73241  
    473473PASS typeof Object.getOwnPropertyDescriptor(window, 'unescape') is 'object'
    474474PASS typeof Object.getOwnPropertyDescriptor(window, 'webkitNotifications') is 'object'
     475PASS typeof Object.getOwnPropertyDescriptor(window, 'webkitPerformance') is 'object'
    475476PASS typeof Object.getOwnPropertyDescriptor(window, 'window') is 'object'
    476477PASS typeof Object.getOwnPropertyDescriptor(window, 'windowPropertyNames') is 'object'
  • trunk/WebCore/ChangeLog

    r73238 r73241  
     12010-12-02  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Reviewed by Andreas Kling.
     4
     5        [Qt] Enable Web Timing for Qt
     6        https://bugs.webkit.org/show_bug.cgi?id=42433
     7
     8        * features.pri: Enable Web Timing for trunk (but not yet for
     9          production)
     10
    1112010-12-02  Andy Estes  <aestes@apple.com>
    212
  • trunk/WebCore/features.pri

    r72676 r73241  
    77CONFIG(production) {
    88    DEFINES += ENABLE_XSLT=0
     9    DEFINES += ENABLE_WEB_TIMING=0
    910}
    1011
     
    105106
    106107# Web Timing support.
    107 !contains(DEFINES, ENABLE_WEB_TIMING=.): DEFINES += ENABLE_WEB_TIMING=0
     108!contains(DEFINES, ENABLE_WEB_TIMING=.): DEFINES += ENABLE_WEB_TIMING=1
    108109
    109110# XSLT support with QtXmlPatterns
Note: See TracChangeset for help on using the changeset viewer.