Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(505)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/infrastructure/reftest-wait.html
Issue
2729863004
:
Support reftest-wait in web-platform-tests (Closed)
Patch Set: Add TestExpectations entry
Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
content/shell/test_runner/test_runner.cc
third_party/WebKit/LayoutTests/TestExpectations
third_party/WebKit/LayoutTests/external/wpt/infrastructure/reftest-wait.html
third_party/WebKit/LayoutTests/external/wpt/infrastructure/reftest-wait-ref.html
View unified diff
|
Download patch
« no previous file with comments
|
« third_party/WebKit/LayoutTests/TestExpectations
('k') |
third_party/WebKit/LayoutTests/external/wpt/infrastructure/reftest-wait-ref.html »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
<!DOCTYPE html>
2
<html class="reftest-wait">
3
<title>Test infrastructure should support 'reftest-wait'</title>
4
<link rel="match" href="reftest-wait-ref.html">
5
<style>
6
.marker {
7
margin-bottom: 10px;
8
background: red;
9
height: 50px;
10
width: 50px;
11
}
12
</style>
13
<script>
14
setTimeout(function() {
15
document.querySelector(".marker").style.background = 'green';
16
document.documentElement.classList.remove("reftest-wait");
17
}, 1000);
18
</script>
19
<div class="marker"></div>
20
<div>The box above should be green.</div>
21
</html>
OLD
NEW
« no previous file with comments
|
« third_party/WebKit/LayoutTests/TestExpectations
('k') |
third_party/WebKit/LayoutTests/external/wpt/infrastructure/reftest-wait-ref.html »
('j') |
no next file with comments »
Issue 2729863004: Support reftest-wait in web-platform-tests (Closed)
Created 3 years, 9 months ago by smcgruer
Modified 3 years, 9 months ago
Reviewers: tkent, qyearsley
Base URL:
Comments: 6
This is Rietveld
408576698