diff --git a/LayoutTests/imported/w3c/web-platform-tests/css/css-ruby/ruby-overhang-expected.html b/LayoutTests/imported/w3c/web-platform-tests/css/css-ruby/ruby-overhang-expected.html
new file mode 100644
index 0000000000000..9c653e59e4c51
--- /dev/null
+++ b/LayoutTests/imported/w3c/web-platform-tests/css/css-ruby/ruby-overhang-expected.html
@@ -0,0 +1,16 @@
+
+
+
Tests for ruby-overhang: none
+
+
+XXXXX
+XXXXXX
+XXXXXX
diff --git a/LayoutTests/imported/w3c/web-platform-tests/css/css-ruby/ruby-overhang-ref.html b/LayoutTests/imported/w3c/web-platform-tests/css/css-ruby/ruby-overhang-ref.html
new file mode 100644
index 0000000000000..9c653e59e4c51
--- /dev/null
+++ b/LayoutTests/imported/w3c/web-platform-tests/css/css-ruby/ruby-overhang-ref.html
@@ -0,0 +1,16 @@
+
+
+Tests for ruby-overhang: none
+
+
+XXXXX
+XXXXXX
+XXXXXX
diff --git a/LayoutTests/imported/w3c/web-platform-tests/css/css-ruby/ruby-overhang.html b/LayoutTests/imported/w3c/web-platform-tests/css/css-ruby/ruby-overhang.html
new file mode 100644
index 0000000000000..2c912869d622e
--- /dev/null
+++ b/LayoutTests/imported/w3c/web-platform-tests/css/css-ruby/ruby-overhang.html
@@ -0,0 +1,17 @@
+
+
+Tests for ruby-overhang: none
+
+
+
+
+XXX
+XXX
+XXX
diff --git a/Source/WebCore/layout/formattingContexts/inline/ruby/RubyFormattingContext.cpp b/Source/WebCore/layout/formattingContexts/inline/ruby/RubyFormattingContext.cpp
index c6bdfd6290d38..4b2de99e41899 100644
--- a/Source/WebCore/layout/formattingContexts/inline/ruby/RubyFormattingContext.cpp
+++ b/Source/WebCore/layout/formattingContexts/inline/ruby/RubyFormattingContext.cpp
@@ -619,6 +619,8 @@ void RubyFormattingContext::applyRubyOverhang(InlineFormattingContext& parentFor
auto& rubyBaseLayoutBox = displayBoxes[rubyBaseStart].layoutBox();
ASSERT(rubyBaseLayoutBox.isRubyBase());
ASSERT(hasInterlinearAnnotation(rubyBaseLayoutBox));
+ if (rubyBaseLayoutBox.style().rubyOverhang() == RubyOverhang::None)
+ continue;
auto beforeOverhang = overhangForAnnotationBefore(rubyBaseLayoutBox, rubyBaseStart, displayBoxes, lineLogicalHeight, parentFormattingContext);
auto afterOverhang = overhangForAnnotationAfter(rubyBaseLayoutBox, { rubyBaseStart, startEndPair.end() }, displayBoxes, lineLogicalHeight, parentFormattingContext);