Index: third_party/WebKit/Source/core/layout/ng/inline/ng_inline_item_result.h |
diff --git a/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_item_result.h b/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_item_result.h |
index 0e527708d8b34d3b98af7c6367f0852931aa722e..a81efcd4c4123b25e64ba2f126a936747bc45378 100644 |
--- a/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_item_result.h |
+++ b/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_item_result.h |
@@ -42,6 +42,14 @@ struct CORE_EXPORT NGInlineItemResult { |
// NGBoxStrut for atomic inline items. |
NGBoxStrut margins; |
+ // Inside of this is not breakable. |
+ // Used only during the line breaking. |
ikilpatrick
2017/05/24 04:03:38
Used only during line breaking.
(& below).
kojii
2017/05/24 15:50:55
Thank you, articles are not easy for me...
|
+ unsigned no_break_opportunities_inside : 1; |
+ |
+ // Lines must not break after this. |
+ // Used only during the line breaking. |
+ unsigned prohibit_break_after : 1; |
+ |
NGInlineItemResult(); |
NGInlineItemResult(unsigned index, unsigned start, unsigned end); |
}; |