Title: [289953] branches/safari-613.1.17.1-branch
- Revision
- 289953
- Author
- [email protected]
- Date
- 2022-02-16 13:49:36 -0800 (Wed, 16 Feb 2022)
Log Message
Revert r289920. rdar://problem/82142820
Modified Paths
Removed Paths
Diff
Deleted: branches/safari-613.1.17.1-branch/LayoutTests/fast/forms/listbox-zero-item-height-expected.txt (289952 => 289953)
--- branches/safari-613.1.17.1-branch/LayoutTests/fast/forms/listbox-zero-item-height-expected.txt 2022-02-16 21:49:31 UTC (rev 289952)
+++ branches/safari-613.1.17.1-branch/LayoutTests/fast/forms/listbox-zero-item-height-expected.txt 2022-02-16 21:49:36 UTC (rev 289953)
@@ -1,3 +0,0 @@
-This test passes if it doesn't crash.
-
-
Deleted: branches/safari-613.1.17.1-branch/LayoutTests/fast/forms/listbox-zero-item-height.html (289952 => 289953)
--- branches/safari-613.1.17.1-branch/LayoutTests/fast/forms/listbox-zero-item-height.html 2022-02-16 21:49:31 UTC (rev 289952)
+++ branches/safari-613.1.17.1-branch/LayoutTests/fast/forms/listbox-zero-item-height.html 2022-02-16 21:49:36 UTC (rev 289953)
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<script>
-if (window.testRunner) {
- testRunner.dumpAsText();
-}
-</script>
-
-<style>
- *{zoom:4000;}
-</style>
-
-<form>
- <div>
- <p>This test passes if it doesn't crash.</p>
- <select multiple="multiple" style="-webkit-appearance:push-button;">
- </div>
-</form>
\ No newline at end of file
Modified: branches/safari-613.1.17.1-branch/Source/WebCore/ChangeLog (289952 => 289953)
--- branches/safari-613.1.17.1-branch/Source/WebCore/ChangeLog 2022-02-16 21:49:31 UTC (rev 289952)
+++ branches/safari-613.1.17.1-branch/Source/WebCore/ChangeLog 2022-02-16 21:49:36 UTC (rev 289953)
@@ -1,5 +1,9 @@
2022-02-16 Russell Epstein <[email protected]>
+ Revert r289920. rdar://problem/82142820
+
+2022-02-16 Russell Epstein <[email protected]>
+
Cherry-pick r289892. rdar://problem/88696673
REGRESSION(r287293): EventListener::wasCreatedFromMarkup() is incorrect after replaceJSFunctionForAttributeListener()
Modified: branches/safari-613.1.17.1-branch/Source/WebCore/platform/graphics/FontMetrics.h (289952 => 289953)
--- branches/safari-613.1.17.1-branch/Source/WebCore/platform/graphics/FontMetrics.h 2022-02-16 21:49:31 UTC (rev 289952)
+++ branches/safari-613.1.17.1-branch/Source/WebCore/platform/graphics/FontMetrics.h 2022-02-16 21:49:36 UTC (rev 289953)
@@ -42,7 +42,7 @@
void setAscent(float ascent)
{
m_floatAscent = ascent;
- m_intAscent = std::max(static_cast<int>(lroundf(ascent)), 0);
+ m_intAscent = lroundf(ascent);
}
float floatDescent(FontBaseline baselineType = AlphabeticBaseline) const
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes