Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update fast/text/glyph-reordering.html after r177774
https://bugs.webkit.org/show_bug.cgi?id=141775

Reviewed by Dan Bernstein.

* fast/text/glyph-reordering.html:
* platform/mac/TestExpectations:


Canonical link: https://commits.webkit.org/159838@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@180368 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
litherum committed Feb 19, 2015
1 parent 72f6b82 commit f135644
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 10 additions & 0 deletions LayoutTests/ChangeLog
@@ -1,3 +1,13 @@
2015-02-19 Myles C. Maxfield <mmaxfield@apple.com>

Update fast/text/glyph-reordering.html after r177774
https://bugs.webkit.org/show_bug.cgi?id=141775

Reviewed by Dan Bernstein.

* fast/text/glyph-reordering.html:
* platform/mac/TestExpectations:

2015-02-19 David Hyatt <hyatt@apple.com>

Columns are splitting unsplittable content.
Expand Down
2 changes: 1 addition & 1 deletion LayoutTests/fast/text/glyph-reordering.html
Expand Up @@ -25,5 +25,5 @@
range.setEnd(reference, 3);
var referenceWidth = totalWidth - range.getBoundingClientRect().width;

document.getElementById("result").innerText = width === referenceWidth ? "PASS" : "FAIL: width was " + width + " instead of " + referenceWidth;
document.getElementById("result").innerText = Math.abs(width - referenceWidth) < 1.5 ? "PASS" : "FAIL: width was " + width + " instead of " + referenceWidth;
</script>
2 changes: 0 additions & 2 deletions LayoutTests/platform/mac/TestExpectations
Expand Up @@ -1255,8 +1255,6 @@ webkit.org/b/139968 platform/mac/fast/text/multiple-codeunit-vertical-upright.ht
webkit.org/b/139968 svg/text/svg-font-word-rounding-hacks-spaces.html [ ImageOnlyFailure ]
webkit.org/b/139968 svg/text/tspan-outline.html [ ImageOnlyFailure ]
webkit.org/b/139968 svg/transforms/transformed-text-fill-gradient.html [ ImageOnlyFailure ]
# The following tests' expected results don't look like render tree dumps
webkit.org/b/139968 fast/text/glyph-reordering.html [ Failure ]

# These tests became flaky, text width gets slightly off.
webkit.org/b/139968 fast/block/margin-collapse/103.html [ Pass Failure ]
Expand Down

0 comments on commit f135644

Please sign in to comment.