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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/filters/effect-reference-lighting-no-light.html

Issue 1375793003: Update error-handling for fe*Lighting and feTurbulence (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/css3/filters/effect-reference-lighting-no-light-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .target {
4 display: inline-block;
5 width: 100px;
6 height: 100px;
7 background-color: red;
8 }
9 </style>
10 <div class="target" style="-webkit-filter: url(#noLightDiffuse); filter: url(#no LightDiffuse)"></div>
11 <div class="target" style="-webkit-filter: url(#noLightSpecular); filter: url(#n oLightSpecular)"></div>
12 <svg height="0" color-interpolation-filters="sRGB">
13 <filter id="noLightDiffuse" x="0" y="0" width="1" height="1">
14 <feDiffuseLighting lighting-color="blue"/>
15 <feColorMatrix values="1 0 0 0 0,
16 0 1 0 0 0.5,
17 0 0 1 0 0,
18 0 0 0 1 1"/>
19 </filter>
20
21 <filter id="noLightSpecular" x="0" y="0" width="1" height="1">
22 <feSpecularLighting lighting-color="blue"/>
23 <feColorMatrix values="1 0 0 0 0,
24 0 1 0 0 0.5,
25 0 0 1 0 0,
26 0 0 0 1 1"/>
27 </filter>
28 </svg>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/css3/filters/effect-reference-lighting-no-light-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698