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

Unified Diff: LayoutTests/fast/borders/outline-negative-start.html

Issue 1343773002: Compute outline mid-line in way that works with negative start-values (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
« no previous file with comments | « no previous file | LayoutTests/fast/borders/outline-negative-start-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/borders/outline-negative-start.html
diff --git a/LayoutTests/fast/borders/outline-negative-start.html b/LayoutTests/fast/borders/outline-negative-start.html
new file mode 100644
index 0000000000000000000000000000000000000000..44904a478bef162e8e9322ef5c6a07a259ea77f0
--- /dev/null
+++ b/LayoutTests/fast/borders/outline-negative-start.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<style>
+.square {
+ background-color: lightblue;
+ width: 50px;
+ height: 50px;
+ display: inline-block;
+ margin: 5px;
+}
+.dashed {
+ outline: 1px dashed black;
+}
+.dotted {
+ outline: 1px dotted black;
+}
+.solid {
+ outline: 1px solid black;
+}
+.with-rotate {
+ transform: rotate(0deg);
+}
+</style>
+<div class="square solid with-rotate"></div>
+<div class="square dashed with-rotate"></div>
+<div class="square dotted with-rotate"></div>
« no previous file with comments | « no previous file | LayoutTests/fast/borders/outline-negative-start-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698