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

Unified Diff: LayoutTests/fast/css/all-inherit-or-unset-color.html

Issue 1306283006: BackgroundImage incorrectly returns empty url() when created on-the-fly (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Ensure getComputedStyle returns absolute URLs Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/css/all-inherit-or-unset-color.html
diff --git a/LayoutTests/fast/css/all-inherit-or-unset-color.html b/LayoutTests/fast/css/all-inherit-or-unset-color.html
deleted file mode 100644
index 1f4617ed3d4425d7e68d9dcf706f618899d2aaa1..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/css/all-inherit-or-unset-color.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
Timothy Loh 2015/09/15 12:20:47 Why is this file removed?
nainar 2015/09/16 07:16:48 Fixed.
-<style>
-#parent1 { color: red; }
-
-#target1
-{
- all: inherit;
- color: green;
-}
-
-#parent2 { color: red; }
-
-#target2
-{
- all: unset;
- color: #90EE90;
-}
-</style>
-<div id='parent1'>
- <div id='target1'>Testing target1 color -> should be green</div>
-</div>
-
-<div id='parent2'>
- <div id='target2'>Testing target2 color -> should be light green</div>
-</div>

Powered by Google App Engine
This is Rietveld 408576698