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
(99)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: LayoutTests/fast/overflow/resize-inherit.html
Issue
639293008
:
Make CSS resize property non-inherited. (Closed)
Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: New baselines
Created 6 years, 2 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:
LayoutTests/TestExpectations
LayoutTests/compositing/overflow/content-gains-scrollbars-expected.txt
LayoutTests/compositing/overflow/overflow-scrollbar-layers-expected.txt
LayoutTests/fast/overflow/resize-inherit.html
LayoutTests/fast/overflow/resize-inherit-expected.txt
Source/core/css/CSSProperties.in
Source/core/rendering/style/RenderStyle.h
Source/core/rendering/style/StyleRareInheritedData.h
Source/core/rendering/style/StyleRareInheritedData.cpp
Source/core/rendering/style/StyleRareNonInheritedData.h
Source/core/rendering/style/StyleRareNonInheritedData.cpp
View unified diff
|
Download patch
« no previous file with comments
|
« LayoutTests/compositing/overflow/overflow-scrollbar-layers-expected.txt
('k') |
LayoutTests/fast/overflow/resize-inherit-expected.txt »
('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
<script src="../../resources/js-test.js"></script>
3
<style>
4
.overflow {
5
overflow: scroll;
6
width: 200px;
7
height: 200px;
8
}
9
.resize {
10
resize: both;
11
}
12
.resize-inherit {
13
resize: inherit;
14
}
15
</style>
16
<div class="overflow resize">
17
<div class="overflow no-resize"></div>
18
<div class="overflow resize-inherit"></div>
19
</div>
20
<script>
21
description("CSS resize property is inherited:no");
22
23
shouldBe("getComputedStyle(document.querySelector('.overflow.resize')).resize", "'both'");
24
shouldBe("getComputedStyle(document.querySelector('.overflow.no-resize')).resize ", "'none'");
25
shouldBe("getComputedStyle(document.querySelector('.overflow.resize-inherit')).r esize", "'both'");
26
</script>
OLD
NEW
« no previous file with comments
|
« LayoutTests/compositing/overflow/overflow-scrollbar-layers-expected.txt
('k') |
LayoutTests/fast/overflow/resize-inherit-expected.txt »
('j') |
no next file with comments »
Issue 639293008: Make CSS resize property non-inherited. (Closed)
Created 6 years, 2 months ago by rune
Modified 6 years, 2 months ago
Reviewers: andersr, Timothy Loh
Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Comments: 4
This is Rietveld
408576698