| Summary: | run web timing tests | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Alex Christensen <achristensen> | ||||
| Component: | WebCore Misc. | Assignee: | Nobody <webkit-unassigned> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | rniwa | ||||
| Priority: | P2 | ||||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Attachments: |
|
||||||
|
Description
Alex Christensen
2014-05-27 15:56:55 PDT
Created attachment 232158 [details]
Patch
Comment on attachment 232158 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=232158&action=review > LayoutTests/fast/dom/script-tests/webtiming-document-open.js:34 > + for (var key in timing) { > + keys.push(key); > + } No curly brackets for single line statements. > LayoutTests/fast/dom/script-tests/webtiming-navigate-within-document.js:11 > + for (var property in timing) { > + properties.push(property); > + } Ditto. > LayoutTests/platform/mac/TestExpectations:193 > +# Resource Timing is not enabled. > +# https://bugs.webkit.org/show_bug.cgi?id=133321 > http/tests/w3c/webperf Shouldn't we also disable this on ML and Mavericks? (In reply to comment #2) > (From update of attachment 232158 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=232158&action=review > > > LayoutTests/fast/dom/script-tests/webtiming-document-open.js:34 > > + for (var key in timing) { > > + keys.push(key); > > + } > > No curly brackets for single line statements. Done. > > > LayoutTests/fast/dom/script-tests/webtiming-navigate-within-document.js:11 > > + for (var property in timing) { > > + properties.push(property); > > + } > > Ditto. Done. > > > LayoutTests/platform/mac/TestExpectations:193 > > +# Resource Timing is not enabled. > > +# https://bugs.webkit.org/show_bug.cgi?id=133321 > > http/tests/w3c/webperf > > Shouldn't we also disable this on ML and Mavericks? This needs to stay disabled until RESOURCE_TIMING is enabled and tested. http://trac.webkit.org/changeset/169403 |