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

Unified Diff: LayoutTests/fast/css/parse-color-int-or-percent-crash.html

Issue 114373004: Remove the SVGColor and SVGPaint DOM interfaces (were deprecated). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: text diff fix Created 7 years 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/parse-color-int-or-percent-crash.html
diff --git a/LayoutTests/fast/css/parse-color-int-or-percent-crash.html b/LayoutTests/fast/css/parse-color-int-or-percent-crash.html
index ff86427c7b0fa25593ce61759eb4e9db76626089..9aae9223aa44dc1681134679f020888afee44b41 100644
--- a/LayoutTests/fast/css/parse-color-int-or-percent-crash.html
+++ b/LayoutTests/fast/css/parse-color-int-or-percent-crash.html
@@ -1,6 +1,6 @@
<html>
<body>
- <script>
+ <script>
if (window.testRunner)
testRunner.dumpAsText();
@@ -9,7 +9,7 @@
var colorString = "rgb(00000000000000000000";
stopElement.style.setProperty("stop-color", colorString);
- document.body.innerHTML = stopElement.style.stopColor == "#0000ff" ? "PASS" : "FAIL";
+ document.body.innerHTML = stopElement.style.stopColor == "rgb(0, 0, 255)" ? "PASS" : "FAIL";
</script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698