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

Unified Diff: LayoutTests/fast/borders/border-image-fill-no-border-width.html

Issue 1159773005: Handle border-image with fill and zero-width borders (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove newly added but flaky test Created 5 years, 7 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/borders/border-image-fill-no-border-width.html
diff --git a/LayoutTests/fast/borders/border-image-fill-no-border-width.html b/LayoutTests/fast/borders/border-image-fill-no-border-width.html
new file mode 100644
index 0000000000000000000000000000000000000000..b7522e9cd675a4e1ba26663a543b22d7cb81e906
--- /dev/null
+++ b/LayoutTests/fast/borders/border-image-fill-no-border-width.html
@@ -0,0 +1,19 @@
+<!DOCTYPE HTML>
pdr. 2015/06/02 03:07:56 I like this test but can you add the other tests f
+<head>
+ <title>Test that border-image is drawn even though border width is zero</title>
+ <style>
+ body { margin: 0; }
+ div {
+ border-width: 0px;
+ border-style: solid;
+ height: 76px;
+ width: 76px;
+ background-color: red;
+ border-image-source: url('resources/border-image.png');
+ border-image-slice: 0 fill;
+ }
+ </style>
+</head>
+<body>
+ <div></div>
+</body>

Powered by Google App Engine
This is Rietveld 408576698