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

Unified Diff: third_party/WebKit/LayoutTests/fast/sub-pixel/float-subpixel-wrapping-expected.html

Issue 2003173002: Represent lines using LayoutUnit in LineWidth (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2743
Patch Set: Created 4 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: third_party/WebKit/LayoutTests/fast/sub-pixel/float-subpixel-wrapping-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/sub-pixel/float-subpixel-wrapping-expected.html b/third_party/WebKit/LayoutTests/fast/sub-pixel/float-subpixel-wrapping-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..6921f66664b472773ecc0128252af89289c260aa
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/sub-pixel/float-subpixel-wrapping-expected.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Tests subpixel line breaking for floats</title>
+ <style>
+ a.powered-by {
+ float: right;
+ position: relative;
+ display: inline-block;
+ font-size: .9em;
+ text-align: right;
+ white-space: nowrap;
+ }
+ a.powered-by span {
+ display: inline-block;
+ float: right;
+ margin-top: -3px;
+ margin-left: 6px;
+ background: red;
+ width: 17px;
+ height: 17px;
+ }
+ </style>
+ </head>
+ <body>
+ <a class="powered-by">Should not wrap <span></span></a>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698