Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(316)

Issue 2942573003: [DevTools] New harness for inspector-protocol layout tests (Closed)

Created:
3 years, 6 months ago by dgozman
Modified:
3 years, 5 months ago
CC:
chromium-reviews, mlamouri+watch-content_chromium.org, caseq+blink_chromium.org, mlamouri+watch-test-runner_chromium.org, Peter Beverloo, jam, lushnikov+blink_chromium.org, pfeldman+blink_chromium.org, darin-cc_chromium.org, pfeldman, devtools-reviews_chromium.org, blink-reviews, einbinder+watch-test-runner_chromium.org, apavlov+blink_chromium.org, jochen+watch_chromium.org, kozyatinskiy+blink_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

[DevTools] New harness for inspector-protocol layout tests New harness loads a helper html file in a main testing window, connects it to a browser-wide DevToolsAgentHost for manipulating pages and evaluates the javascript test. DevToolsProtocolTestBindings is a small implementation of DevToolsAgentHost <--> harness communication (based on DevToolsFrontendHost). Harness has a Page and Session class, which will make it possible to test multiple sessions connected to the same page, and (if need arises) multiple pages interaction. This patch converts ~50 out of ~220 inspector-protocol tests to the new harness to ensure no roadblocks. More tests will be converted later, with old harness being deleted afterwards. BUG=590878

Patch Set 1 #

Total comments: 4

Patch Set 2 : migrated a couple of tests, something still flakes #

Patch Set 3 : migrated a couple of tests, something still flakes #

Patch Set 4 : resolved flakiness, allow non-http #

Patch Set 5 : many domains work, but not animation #

Patch Set 6 : animations and more domains work! #

Patch Set 7 : more domains, page half done #

Patch Set 8 : page converted #

Patch Set 9 : unified #

Patch Set 10 : unified #

Total comments: 14

Patch Set 11 : InspectorTest -> testRunner #

Patch Set 12 : Protocol -> dp #

Unified diffs Side-by-side diffs Delta from patch set Stats (+3557 lines, -5834 lines) Patch
M content/shell/BUILD.gn View 1 chunk +2 lines, -0 lines 0 comments Download
M content/shell/browser/DEPS View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -0 lines 0 comments Download
M content/shell/browser/layout_test/blink_test_controller.h View 2 chunks +3 lines, -0 lines 0 comments Download
M content/shell/browser/layout_test/blink_test_controller.cc View 1 2 3 4 5 6 7 8 9 10 6 chunks +19 lines, -3 lines 0 comments Download
A content/shell/browser/layout_test/devtools_protocol_test_bindings.h View 1 chunk +49 lines, -0 lines 0 comments Download
A content/shell/browser/layout_test/devtools_protocol_test_bindings.cc View 1 2 3 4 5 6 7 8 1 chunk +131 lines, -0 lines 0 comments Download
M content/shell/browser/shell_devtools_manager_delegate.cc View 1 2 3 4 5 2 chunks +4 lines, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/FlagExpectations/enable-blink-features=LayoutNG View 1 2 3 4 5 6 7 8 3 chunks +16 lines, -16 lines 0 comments Download
M third_party/WebKit/LayoutTests/FlagExpectations/enable-network-service View 1 2 3 4 5 6 7 8 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/FlagExpectations/root-layer-scrolls View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/access-inspected-object.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/cookies-protocol-test.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
D third_party/WebKit/LayoutTests/http/tests/inspector-protocol/css-protocol-test.js View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -203 lines 0 comments Download
D third_party/WebKit/LayoutTests/http/tests/inspector-protocol/dom-protocol-test.js View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -46 lines 0 comments Download
D third_party/WebKit/LayoutTests/http/tests/inspector-protocol/inspector-protocol-test.js View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -164 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network-data-length.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network-fetch-content-with-error-status-code.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/disable-interception-midway.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/interception-auth-cancel.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/interception-auth-provide-credentials.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
D third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/interception-test.js View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -295 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/navigation-interception.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/redirect-interception.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/redirect-interception-blocked.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/redirect-interception-mocked.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/redirect-interception-modified.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/request-interception.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/request-interception-mock302.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/request-interception-mock404.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/request-interception-modify-get-to-post.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/xhr-interception.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/xhr-interception-auth-fail.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/override-referrer.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/ping-redirect.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/reload-memory-cache.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/request-mixed-content-status-blockable.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/request-mixed-content-status-none.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/request-mixed-content-status-optionally-blockable.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/request-referrer-policy.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/resources/image.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
A + third_party/WebKit/LayoutTests/http/tests/inspector-protocol/resources/inspector-protocol-test.js View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
A + third_party/WebKit/LayoutTests/http/tests/inspector-protocol/resources/interception-test.js View 1 2 3 4 5 6 7 8 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/runtime-get-properties-doesnt-crash-on-window-frame.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
D third_party/WebKit/LayoutTests/http/tests/inspector-protocol/tracing-test.js View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -136 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector-protocol/websocket/websocket-user-agent-override.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-aria-1.1.html View 1 2 3 4 1 chunk +0 lines, -30 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-aria-1.1.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +20 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-aria-1.1-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -6 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-dumpAccessibilityNodes.js View 1 2 3 4 1 chunk +0 lines, -326 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-getNodeWithNoAXNode.html View 1 2 3 4 1 chunk +0 lines, -20 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-getNodeWithNoAXNode.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +11 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-getRelationships.html View 1 2 3 4 1 chunk +0 lines, -57 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-getRelationships.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +48 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-getRelationships-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -13 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-ignoredNodes.html View 1 2 3 4 1 chunk +0 lines, -64 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-ignoredNodes.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +54 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-ignoredNodes-expected.txt View 1 2 3 4 5 6 7 8 3 chunks +1 line, -11 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-ignoredNodesModal.html View 1 2 3 4 1 chunk +0 lines, -31 lines 0 comments Download
A + third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-ignoredNodesModal.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +16 lines, -26 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-ignoredNodesModal-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -3 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-modal.html View 1 2 3 4 1 chunk +0 lines, -34 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-modal.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +23 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-modal-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-buttons.html View 1 2 3 4 1 chunk +0 lines, -53 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-buttons.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +45 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-buttons-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-img-figure.html View 1 2 3 4 1 chunk +0 lines, -76 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-img-figure.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +68 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-img-figure-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-input.html View 1 2 3 4 1 chunk +0 lines, -62 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-input.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +54 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-input-buttons.html View 1 2 3 4 1 chunk +0 lines, -70 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-input-buttons.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +63 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-input-buttons-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-input-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-labelledby.html View 1 2 3 4 1 chunk +0 lines, -83 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-labelledby.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +75 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-labelledby-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-summary.html View 1 2 3 4 1 chunk +0 lines, -57 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-summary.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +49 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-summary-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-visiblity.html View 1 2 3 4 1 chunk +0 lines, -116 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-visiblity.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +107 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-nameSources-visiblity-expected.txt View 1 2 3 4 5 6 7 8 4 chunks +4 lines, -3 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-create-start.html View 1 2 3 4 1 chunk +0 lines, -35 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-create-start.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +13 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-create-start-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-css-replay.html View 1 2 3 4 1 chunk +0 lines, -40 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-css-replay.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +17 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-css-replay-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-empty-transition-cancel.html View 1 2 3 4 1 chunk +0 lines, -41 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-empty-transition-cancel.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +19 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-empty-transition-cancel-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-multiple-frames.html View 1 2 3 4 1 chunk +0 lines, -47 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-multiple-frames.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +38 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-pause.html View 1 2 3 4 1 chunk +0 lines, -60 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-pause.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +27 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-pause-close.html View 1 2 3 4 1 chunk +0 lines, -39 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-pause-close.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +11 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-pause-close-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-pause-infinite.html View 1 2 3 4 1 chunk +0 lines, -60 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-pause-infinite.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +27 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-paused-css-animation.html View 1 2 3 4 1 chunk +0 lines, -49 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-paused-css-animation.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +28 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-paused-css-animation-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-release.html View 1 2 3 4 1 chunk +0 lines, -65 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-release.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +25 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-resolve.html View 1 2 3 4 1 chunk +0 lines, -38 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-resolve.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +17 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-resolve-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-seek-past-end.html View 1 2 3 4 1 chunk +0 lines, -51 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-seek-past-end.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +26 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-seek-past-end-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-start-cancel.html View 1 2 3 4 1 chunk +0 lines, -51 lines 0 comments Download
A + third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-start-cancel.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +18 lines, -42 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-start-cancel-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-zero-duration.html View 1 2 3 4 1 chunk +0 lines, -49 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-zero-duration.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +27 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-zero-duration-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/console/console-dom-mutation-violations.html View 1 2 3 4 1 chunk +0 lines, -23 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/console/console-dom-mutation-violations.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +8 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/console/console-dom-mutation-violations-expected.txt View 1 2 3 4 5 6 7 8 2 chunks +3 lines, -2 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/console/console-let-const-with-api.html View 1 2 3 4 1 chunk +0 lines, -63 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/console/console-let-const-with-api.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +34 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/console/console-let-const-with-api-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -2 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/console/console-memory-setter-in-strict-mode.html View 1 2 3 4 1 chunk +0 lines, -20 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/console/console-memory-setter-in-strict-mode.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +6 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/console/console-memory-setter-in-strict-mode-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/console-profile.html View 1 2 3 4 1 chunk +0 lines, -67 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/console-profile.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +43 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/console-profile-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/console-profileEnd-parameterless-crash.html View 1 2 3 4 1 chunk +0 lines, -55 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/console-profileEnd-parameterless-crash.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +38 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/enable-disable.html View 1 2 3 4 1 chunk +0 lines, -89 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/enable-disable.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +48 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/enable-disable-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -1 line 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/record-cpu-profile.html View 1 2 3 4 1 chunk +0 lines, -62 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/record-cpu-profile.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +30 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/record-cpu-profile-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -1 line 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/stop-without-preceeding-start.html View 1 2 3 4 1 chunk +0 lines, -26 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/stop-without-preceeding-start.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +7 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/stop-without-preceeding-start-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-add-rule.html View 1 2 3 4 5 6 7 8 9 10 11 11 chunks +14 lines, -14 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-collect-class-names.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-coverage-poll.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-create-stylesheet-and-add-rule.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-fonts-updated-event.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-get-background-colors.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-get-keyframes.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-get-media-queries.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-get-platform-fonts.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-get-rule-list.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-set-effective-property-value.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-set-inline-style-text.html View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +7 lines, -7 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-set-inline-styleSheetText.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-set-media-text.html View 1 2 3 4 5 6 7 8 9 10 11 7 chunks +8 lines, -8 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-set-multiple-style-texts.html View 1 2 3 4 5 6 7 8 9 10 11 7 chunks +10 lines, -10 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-set-multiple-style-texts-correct-ranges.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-set-rule-selector.html View 1 2 3 4 5 6 7 8 9 10 11 18 chunks +19 lines, -19 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-set-style-text.html View 1 2 3 4 5 6 7 8 9 10 11 8 chunks +10 lines, -10 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-shadow-dom-inherits-styles.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-shadow-host-content-selector.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/css-shadow-host-rule.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/cssom-matching-rules.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/cssom-matching-rules-multiple.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/cssom-modify-rule-and-get-rule-list.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/media-query-listener-exception.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/css/pseudo-element-matching-selectors.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/access-obsolete-frame.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/call-frame-functionLocation.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/continueToLocation.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/debugger-doesnt-step-into-injected-script.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/debugger-evaluate-in-worker-while-pause-in-page.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/debugger-pause-dedicated-worker.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/debugger-pause-dedicated-worker-loop.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/debugger-pause-in-tight-loop.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/debugger-scope-skip-variables-with-empty-name.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/debugger-setBlackboxPatterns.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/debugger-setEventListenerBreakpoint.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/debugger-setTimeout-sourceUrl-dedicated-worker-loop.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/debugger-step-into-dedicated-worker.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/debugger-terminate-dedicated-worker-while-paused.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/domdebugger-getEventListeners.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/domdebugger-script-blocked-by-csp.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/domdebugger-setInnerHTML.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/postMessage-on-pause.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/scriptParsedHash.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/setScriptSource.html View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/step-into-inline-event-handler.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/step-over-caught-exception.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/stepping-with-blackboxed-ranges.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/suspend-setTimeout-on-pause-in-dedicated-worker.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/debugger/updateCallFrameScopes.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/dom-snapshot/dom-snapshot-getSnapshot.html View 1 2 3 4 1 chunk +0 lines, -63 lines 0 comments Download
A + third_party/WebKit/LayoutTests/inspector-protocol/dom-snapshot/dom-snapshot-getSnapshot.js View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +31 lines, -27 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/dom-snapshot/dom-snapshot-getSnapshot-expected.txt View 1 2 3 4 5 6 7 8 35 chunks +127 lines, -487 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-childNodeCount.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-collect-class-names.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-focus.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-getBoxModel.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-getEventListeners.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-getFlattenedDocument.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-getFlattenedDocument-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-getNodeForLocation.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-getNodeForLocation-skip-shadow.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-ns-attr-modified.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-relayout-boundary.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-request-child-nodes-depth.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-request-child-nodes-traverse-frames.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-request-document-with-child-nodes.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-setInspectModeEnabled.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-setOuterHTML.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/dom-svg-attribute-case.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/dom/push-children-on-pseudo-addition.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/default-background-color.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/default-background-color-cleared.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-320.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-320-2x.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-320-only-viewport.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-980.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-980-2x.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-980-only-viewport.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-controls.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-dw.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-dw-2x.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-initial-scale.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-insets.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-none.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-none-2x.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-partial.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-restore.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-small.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-small-dw.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-emulation-test.js View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -259 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/device-scale-not-persistant.html View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/forced-viewport-far.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/forced-viewport-far-layered.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/forced-viewport-near.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/forced-viewport-reset.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/emulation/forced-viewport-unobserved.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/heap-profiler/heap-objects-tracking.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/heap-profiler/heap-samples-in-snapshot.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/heap-profiler/heap-snapshot-with-active-dom-object.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/heap-profiler/heap-snapshot-with-detached-dom-tree.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/heap-profiler/heap-snapshot-with-event-listener.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/heap-profiler/sampling-heap-profiler.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/heap-profiler/take-heap-snapshot.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/input/dispatchKeyEvent.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/input/dispatchKeyEvent-focus.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/input/dispatchMouseEvent.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/input/dispatchTouchEvent.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/input/emulateTouchFromMouseEvent.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/input/eventTimestamp.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/json-parse.html View 1 1 chunk +0 lines, -24 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/json-parse.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +13 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/json-parse-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/layers/get-layers.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/layers/layer-protocol-test.js View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -48 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/layers/paint-profiler.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/layers/paint-profiler-load-empty.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/layout-fonts/cjk-ideograph-fallback-by-lang.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/layout-fonts/fallback-myanmar.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/layout-fonts/generic-system-ui.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/layout-fonts/languages-emoji-rare-glyphs.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/layout-fonts/ogham.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/layout-fonts/tifinagh.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/layout-fonts/unicode-range-combining-chars-fallback.html View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -3 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/loading-iframe-document-node.html View 1 1 chunk +0 lines, -89 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/loading-iframe-document-node.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +46 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/loading-iframe-document-node-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/network/resource-type.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/network/websocket-initiator.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/page/createIsolatedWorld.html View 1 2 3 4 5 6 1 chunk +0 lines, -53 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/page/createIsolatedWorld.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +26 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/page/createIsolatedWorld-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/page/enable-disable.html View 1 2 3 4 5 6 1 chunk +0 lines, -66 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/page/enable-disable.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +33 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/page/enable-disable-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/page/frameAttachedDetached.html View 1 2 3 4 5 6 1 chunk +0 lines, -61 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/page/frameAttachedDetached.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +25 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/page/frameAttachedDetached-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/page/frameAttachedStacktrace.html View 1 2 3 4 5 6 1 chunk +0 lines, -92 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/page/frameAttachedStacktrace.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +59 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/page/frameAttachedStacktrace-expected.txt View 1 2 3 4 5 6 7 8 2 chunks +1 line, -2 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/page/frameScheduledNavigation.html View 1 2 3 4 5 6 1 chunk +0 lines, -43 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/page/frameScheduledNavigation.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +21 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/page/frameStartedLoading.html View 1 2 3 4 5 6 1 chunk +0 lines, -36 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/page/frameStartedLoading.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +15 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/page/get-layout-metrics.html View 1 2 3 4 5 6 1 chunk +0 lines, -40 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/page/get-layout-metrics.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +21 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/page/get-layout-metrics-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -1 line 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/page/javascriptDialogEvents.html View 1 2 3 4 5 6 1 chunk +0 lines, -62 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/page/javascriptDialogEvents.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +35 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/page/javascriptDialogEvents-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -4 lines 0 comments Download
A + third_party/WebKit/LayoutTests/inspector-protocol/resources/accessibility-dumpAccessibilityNodes.js View 1 2 3 4 5 6 7 8 9 10 11 8 chunks +70 lines, -41 lines 0 comments Download
A + third_party/WebKit/LayoutTests/inspector-protocol/resources/css-protocol-test.js View 1 2 3 4 5 6 7 8 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/WebKit/LayoutTests/inspector-protocol/resources/device-emulation-test.js View 1 2 3 4 5 6 7 8 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/WebKit/LayoutTests/inspector-protocol/resources/dom-protocol-test.js View 1 2 3 4 5 6 7 8 0 chunks +-1 lines, --1 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/resources/frame-attached-stacktrace-page.html View 1 2 3 4 5 6 7 8 1 chunk +17 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/resources/inspector-protocol-page.html View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/resources/inspector-protocol-test.html View 1 2 3 4 5 6 7 8 1 chunk +10 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/resources/inspector-protocol-test.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +460 lines, -0 lines 0 comments Download
A + third_party/WebKit/LayoutTests/inspector-protocol/resources/layer-protocol-test.js View 1 2 3 4 5 6 7 8 0 chunks +-1 lines, --1 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/resources/simple-iframe.html View 1 2 3 4 5 6 7 8 1 chunk +15 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/resources/tracing-test.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +116 lines, -0 lines 0 comments Download
A + third_party/WebKit/LayoutTests/inspector-protocol/resources/worker-with-throw.js View 1 2 3 4 5 6 7 8 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-await-promise.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-callFunctionOn-async.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-clear-of-command-line-api.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-command-line-api-can-be-overriden.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-console-api-repeated-in-console.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-console-deprecated-methods.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-console-line-and-column.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-console-log-doesnt-run-microtasks.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-console-log-handle-navigate.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-console-memory.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-console-timestamp.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-evaluate-async.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-evaluate-in-default-context.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-evaluate-return-by-value.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-evaluate-with-context-id-equal-zero.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-evaluate-without-enabling.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-execution-contexts-events.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-get-properties-on-proxy.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-getProperties.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-getProperties-preview.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-property-on-console-proto.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-runScript-async.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-shouldnt-crash-after-inspected-context-destroyed.html View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/shadow-dom-rules-in-styleSheetAddedEvent.html View 1 1 chunk +0 lines, -42 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/shadow-dom-rules-in-styleSheetAddedEvent.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +23 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/shadow-dom-rules-in-styleSheetAddedEvent-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -2 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/stylesheet-tracking-restart.html View 1 1 chunk +0 lines, -111 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/stylesheet-tracking-restart.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +56 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/timeline/fetch-as-stream.html View 1 2 3 4 5 1 chunk +0 lines, -109 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/timeline/fetch-as-stream.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +96 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/timeline/fetch-as-stream-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/timeline/page-frames.html View 1 2 3 4 5 1 chunk +0 lines, -49 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/timeline/page-frames.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +40 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/timeline/page-frames-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-dispatchEvent.html View 1 2 3 4 5 1 chunk +0 lines, -60 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-dispatchEvent.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +47 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-layout.html View 1 2 3 4 5 1 chunk +0 lines, -58 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-layout.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +48 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-layout-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-raf.html View 1 2 3 4 5 1 chunk +0 lines, -47 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-raf.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +39 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-raf-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-timer.html View 1 2 3 4 5 1 chunk +0 lines, -57 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-timer.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +41 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-timer-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/worker/exception-from-worker-contains-stack.html View 1 2 3 4 5 6 1 chunk +0 lines, -75 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/worker/exception-from-worker-contains-stack.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +51 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/worker/exception-from-worker-contains-stack-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -1 line 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/worker/resources/worker-with-throw.js View 1 2 3 4 5 6 1 chunk +0 lines, -21 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/worker/worker-console.html View 1 2 3 4 5 6 1 chunk +0 lines, -289 lines 0 comments Download
A third_party/WebKit/LayoutTests/inspector-protocol/worker/worker-console.js View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +244 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/inspector-protocol/worker/worker-console-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -8 lines 0 comments Download
M third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 24 (16 generated)
dgozman
Could you please take a look?
3 years, 6 months ago (2017-06-14 21:12:45 UTC) #4
chenwilliam
Nice. Seems like this should have its own dedicated bug since it'll be multiple CLs? ...
3 years, 6 months ago (2017-06-14 22:06:41 UTC) #5
dgozman
https://codereview.chromium.org/2942573003/diff/1/content/shell/browser/layout_test/devtools_protocol_test_bindings.cc File content/shell/browser/layout_test/devtools_protocol_test_bindings.cc (right): https://codereview.chromium.org/2942573003/diff/1/content/shell/browser/layout_test/devtools_protocol_test_bindings.cc#newcode50 content/shell/browser/layout_test/devtools_protocol_test_bindings.cc:50: std::string dir = "/inspector-protocol-2/"; On 2017/06/14 22:06:41, chenwilliam wrote: ...
3 years, 6 months ago (2017-06-19 17:48:59 UTC) #10
dgozman
Could you please take a look at the new tests and raise any concerns? I ...
3 years, 6 months ago (2017-06-19 17:50:18 UTC) #14
pfeldman
lgtm https://codereview.chromium.org/2942573003/diff/180001/third_party/WebKit/LayoutTests/inspector-protocol/console/console-let-const-with-api.js File third_party/WebKit/LayoutTests/inspector-protocol/console/console-let-const-with-api.js (right): https://codereview.chromium.org/2942573003/diff/180001/third_party/WebKit/LayoutTests/inspector-protocol/console/console-let-const-with-api.js#newcode2 third_party/WebKit/LayoutTests/inspector-protocol/console/console-let-const-with-api.js:2: let {page, session, Protocol} = await InspectorTest.startBlank(''); s/Protocol/dp/
3 years, 6 months ago (2017-06-19 18:44:52 UTC) #15
pfeldman
lgtm
3 years, 6 months ago (2017-06-19 18:45:02 UTC) #16
chenwilliam
https://codereview.chromium.org/2942573003/diff/180001/third_party/WebKit/LayoutTests/FlagExpectations/enable-blink-features=LayoutNG File third_party/WebKit/LayoutTests/FlagExpectations/enable-blink-features=LayoutNG (left): https://codereview.chromium.org/2942573003/diff/180001/third_party/WebKit/LayoutTests/FlagExpectations/enable-blink-features=LayoutNG#oldcode17121 third_party/WebKit/LayoutTests/FlagExpectations/enable-blink-features=LayoutNG:17121: crbug.com/591099 inspector-enabled/sources/debugger/script-formatter-breakpoints-4.html [ Failure ] Don't forget to also ...
3 years, 6 months ago (2017-06-19 19:09:20 UTC) #17
dgozman
3 years, 6 months ago (2017-06-19 21:49:22 UTC) #20
https://codereview.chromium.org/2942573003/diff/180001/third_party/WebKit/Lay...
File
third_party/WebKit/LayoutTests/FlagExpectations/enable-blink-features=LayoutNG
(left):

https://codereview.chromium.org/2942573003/diff/180001/third_party/WebKit/Lay...
third_party/WebKit/LayoutTests/FlagExpectations/enable-blink-features=LayoutNG:17121:
crbug.com/591099
inspector-enabled/sources/debugger/script-formatter-breakpoints-4.html [ Failure
]
On 2017/06/19 19:09:20, chenwilliam wrote:
> Don't forget to also update TestExpectations:
>
https://cs.chromium.org/chromium/src/third_party/WebKit/LayoutTests/TestExpec...

I did for those which I touched. There is a presubmit check, thankfully.

https://codereview.chromium.org/2942573003/diff/180001/third_party/WebKit/Lay...
File
third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network-data-length.html
(right):

https://codereview.chromium.org/2942573003/diff/180001/third_party/WebKit/Lay...
third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network-data-length.html:4:
<script
src="../inspector-protocol/resources/inspector-protocol-test.js"></script>
On 2017/06/19 19:09:20, chenwilliam wrote:
> Is the plan that these http tests are migrated in a second wave?

Exactly.

https://codereview.chromium.org/2942573003/diff/180001/third_party/WebKit/Lay...
File
third_party/WebKit/LayoutTests/inspector-protocol/console/console-let-const-with-api.js
(right):

https://codereview.chromium.org/2942573003/diff/180001/third_party/WebKit/Lay...
third_party/WebKit/LayoutTests/inspector-protocol/console/console-let-const-with-api.js:2:
let {page, session, Protocol} = await InspectorTest.startBlank('');
On 2017/06/19 18:44:52, pfeldman wrote:
> s/Protocol/dp/

Done.

https://codereview.chromium.org/2942573003/diff/180001/third_party/WebKit/Lay...
File
third_party/WebKit/LayoutTests/inspector-protocol/page/javascriptDialogEvents.js
(right):

https://codereview.chromium.org/2942573003/diff/180001/third_party/WebKit/Lay...
third_party/WebKit/LayoutTests/inspector-protocol/page/javascriptDialogEvents.js:1:
(async function() {
On 2017/06/19 19:09:20, chenwilliam wrote:
> I know we talked about this but it seems confusing as a DevTools team member
> when to put copyrights when it comes to test files. From a quick scan of other
> js files in LayoutTests in Blink it seems like most of them don't have any
> copyrights: https://cs.chromium.org/search/?q=f:layouttests+f:js&type=cs
> 
> Can we adopt a convention where tests don't need a copyright notice?

Well, this was a rename (although git didn't get it), so copyright is retained
(in this case - no copyright).

Let's discuss test copyrights on blink-dev maybe?

https://codereview.chromium.org/2942573003/diff/180001/third_party/WebKit/Lay...
File
third_party/WebKit/LayoutTests/inspector-protocol/resources/inspector-protocol-test.js
(right):

https://codereview.chromium.org/2942573003/diff/180001/third_party/WebKit/Lay...
third_party/WebKit/LayoutTests/inspector-protocol/resources/inspector-protocol-test.js:5:
var InspectorTest = {};
On 2017/06/19 19:09:20, chenwilliam wrote:
> Just a thought for f/u work, what do you think about using ProtocolTest as a
> namespace (make it clear that this has nothing to do with the old integration
> tests) and adding doc-types to improve maintainability? I can help with this.

Yeah, I actually want to turn this into TestRunner class, and pass an instance
to a test once we experiment with parallel runs.

https://codereview.chromium.org/2942573003/diff/180001/third_party/WebKit/Lay...
third_party/WebKit/LayoutTests/inspector-protocol/resources/inspector-protocol-test.js:346:
InspectorTest.startBlank = description => InspectorTest._start(description,
null, null);
On 2017/06/19 19:09:20, chenwilliam wrote:
> It seems like the description parameter is never actually used? (when I
scanned
> a few of the tests). It's a bit confusing when reading the call sites in tests
> when they're just ''. Test writers can always do InspectorTest.log() as a
> convention.

It is in some tests. This is actually to force new tests to provide description!

https://codereview.chromium.org/2942573003/diff/180001/third_party/WebKit/Lay...
third_party/WebKit/LayoutTests/inspector-protocol/resources/inspector-protocol-test.js:350:
InspectorTest.debugTest = function(testFunction) {
On 2017/06/19 19:09:20, chenwilliam wrote:
> after this lands, let's include a short description on debugging protocol
tests
> in our GitHub wiki
> https://github.com/ChromeDevTools/devtools-frontend/wiki/Layout-Tests

Sure, thanks!

Powered by Google App Engine
This is Rietveld 408576698