Skip to content

Commit

Permalink
Add tests to ensure spelling error dots are drawn in the correct plac…
Browse files Browse the repository at this point in the history
…e for overlapping lines

https://bugs.webkit.org/show_bug.cgi?id=178611
<rdar://problem/35105805>

Reviewed by Zalan Bujtas.

Add tests to ensure that we paint the spelling error dots in the correct place for
overlapping lines.

* editing/spelling/spelling-markers-in-overlapping-lines-expected.html: Added.
* editing/spelling/spelling-markers-in-overlapping-lines-large-font-expected.html: Added.
* editing/spelling/spelling-markers-in-overlapping-lines-large-font.html: Added.
* editing/spelling/spelling-markers-in-overlapping-lines.html: Added.
* platform/ios/TestExpectations: Skip the test on iOS as it does not support spelling and grammar
marker painting.
* platform/mac-wk2/TestExpectations: Mark the test as an image failure until we fix <https://bugs.webkit.org/show_bug.cgi?id=105616>.

Canonical link: https://commits.webkit.org/194838@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@223842 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
dydz committed Oct 23, 2017
1 parent d2da20f commit d22816a
Show file tree
Hide file tree
Showing 7 changed files with 180 additions and 1 deletion.
19 changes: 19 additions & 0 deletions LayoutTests/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
2017-10-23 Daniel Bates <dabates@apple.com>

Add tests to ensure spelling error dots are drawn in the correct place for overlapping lines
https://bugs.webkit.org/show_bug.cgi?id=178611
<rdar://problem/35105805>

Reviewed by Zalan Bujtas.

Add tests to ensure that we paint the spelling error dots in the correct place for
overlapping lines.

* editing/spelling/spelling-markers-in-overlapping-lines-expected.html: Added.
* editing/spelling/spelling-markers-in-overlapping-lines-large-font-expected.html: Added.
* editing/spelling/spelling-markers-in-overlapping-lines-large-font.html: Added.
* editing/spelling/spelling-markers-in-overlapping-lines.html: Added.
* platform/ios/TestExpectations: Skip the test on iOS as it does not support spelling and grammar
marker painting.
* platform/mac-wk2/TestExpectations: Mark the test as an image failure until we fix <https://bugs.webkit.org/show_bug.cgi?id=105616>.

2017-10-23 Zan Dobersek <zdobersek@igalia.com>

Unreviewed WPE gardening. Unskip the SVG tests and generate the
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html>
<head>
<style>
@font-face {
font-family: Ahem;
src: url("../../resources/Ahem.ttf");
}

body {
margin: 0;
padding: 0;
font: 20px/1 Ahem;
}

#first {
position: relative;
top: -5px;
}

#second {
position: relative;
top: -10px;
}
</style>
</head>
<body>
<div id="first" contenteditable="true"></div>
<div id="second" contenteditable="true"></div>
<script>
var first = document.getElementById("first");
var second = document.getElementById("second");

for (var element of [first, second]) {
element.focus();
document.execCommand("InsertText", false, "mispelled");
document.execCommand("InsertText", false, " "); // Trigger spell checking
element.blur();
}
</script>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html>
<head>
<style>
@font-face {
font-family: Ahem;
src: url("../../resources/Ahem.ttf");
}

body {
margin: 0;
padding: 0;
font: 40px/1 Ahem;
}

#first {
position: relative;
top: -10px;
}

#second {
position: relative;
top: -20px;
}
</style>
</head>
<body>
<div id="first" contenteditable="true"></div>
<div id="second" contenteditable="true"></div>
<script>
var first = document.getElementById("first");
var second = document.getElementById("second");

for (var element of [first, second]) {
element.focus();
document.execCommand("InsertText", false, "mispelled");
document.execCommand("InsertText", false, " "); // Trigger spell checking
element.blur();
}
</script>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<style>
@font-face {
font-family: Ahem;
src: url("../../resources/Ahem.ttf");
}

body {
margin: 0;
padding: 0;
font: 40px/1 Ahem;
}

#first {
line-height: 20px;
}
</style>
</head>
<body>
<div id="first" contenteditable="true"></div>
<div id="second" contenteditable="true"></div>
<script>
var first = document.getElementById("first");
var second = document.getElementById("second");

for (var element of [first, second]) {
element.focus();
document.execCommand("InsertText", false, "mispelled");
document.execCommand("InsertText", false, " "); // Trigger spell checking
element.blur();
}
</script>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<style>
@font-face {
font-family: Ahem;
src: url("../../resources/Ahem.ttf");
}

body {
margin: 0;
padding: 0;
font: 20px/1 Ahem;
}

#first {
line-height: 10px;
}
</style>
</head>
<body>
<div id="first" contenteditable="true"></div>
<div id="second" contenteditable="true"></div>
<script>
var first = document.getElementById("first");
var second = document.getElementById("second");

for (var element of [first, second]) {
element.focus();
document.execCommand("InsertText", false, "mispelled");
document.execCommand("InsertText", false, " "); // Trigger spell checking
element.blur();
}
</script>
</body>
</html>
4 changes: 3 additions & 1 deletion LayoutTests/platform/ios/TestExpectations
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ mhtml
fast/forms/file/file-input-capture.html

# Spelling and grammar markers are not supported
webkit.org/b/105616 editing/spelling/spelling-marker-includes-hyphen.html [ WontFix ]
editing/spelling/spelling-marker-includes-hyphen.html [ WontFix ]
editing/spelling/spelling-markers-in-overlapping-lines.html [ WontFix ]
editing/spelling/spelling-markers-in-overlapping-lines-large-font.html [ WontFix ]

# Plugins are not supported on iOS
plugins
Expand Down
2 changes: 2 additions & 0 deletions LayoutTests/platform/mac-wk2/TestExpectations
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,8 @@ webkit.org/b/105616 editing/mac/spelling/removing-underline-after-accepting-auto
webkit.org/b/105616 editing/mac/spelling/accept-candidate-allows-autocorrect-on-next-word.html [ Failure ]
webkit.org/b/105616 editing/mac/spelling/accept-unseen-candidate-records-acceptance.html [ Failure ]
webkit.org/b/105616 editing/spelling/spelling-marker-includes-hyphen.html [ ImageOnlyFailure ]
webkit.org/b/105616 editing/spelling/spelling-markers-in-overlapping-lines.html [ ImageOnlyFailure ]
webkit.org/b/105616 editing/spelling/spelling-markers-in-overlapping-lines-large-font.html [ ImageOnlyFailure ]

# [WK2] [Mac] Support drag in mouse events for WebKit2 EventSender
# <https://bugs.webkit.org/show_bug.cgi?id=68552>
Expand Down

0 comments on commit d22816a

Please sign in to comment.