Index: Source/core/rendering/RenderBlock.cpp |
diff --git a/Source/core/rendering/RenderBlock.cpp b/Source/core/rendering/RenderBlock.cpp |
index f7fe32715ce2a25006fdd18e8af4a1ebf2e6bb06..1cf46af5b6240c4ef6f40a6e60bfee90f5bfcd08 100644 |
--- a/Source/core/rendering/RenderBlock.cpp |
+++ b/Source/core/rendering/RenderBlock.cpp |
@@ -6508,17 +6508,6 @@ int RenderBlock::lastLineBoxBaseline(LineDirectionMode lineDirection) const |
return -1; |
} |
-bool RenderBlock::containsNonZeroBidiLevel() const |
-{ |
- for (RootInlineBox* root = firstRootBox(); root; root = root->nextRootBox()) { |
- for (InlineBox* box = root->firstLeafChild(); box; box = box->nextLeafChild()) { |
- if (box->bidiLevel()) |
- return true; |
- } |
- } |
- return false; |
-} |
- |
RenderBlock* RenderBlock::firstLineBlock() const |
{ |
RenderBlock* firstLineBlock = const_cast<RenderBlock*>(this); |