Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2010 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 91 | 91 |
| 92 LayoutFlexibleBox::willBeDestroyed(); | 92 LayoutFlexibleBox::willBeDestroyed(); |
| 93 } | 93 } |
| 94 | 94 |
| 95 void LayoutFullScreen::updateStyle() | 95 void LayoutFullScreen::updateStyle() |
| 96 { | 96 { |
| 97 RefPtr<ComputedStyle> fullscreenStyle = ComputedStyle::create(); | 97 RefPtr<ComputedStyle> fullscreenStyle = ComputedStyle::create(); |
| 98 | 98 |
| 99 // Create a stacking context: | 99 // Create a stacking context: |
| 100 fullscreenStyle->setZIndex(INT_MAX); | 100 fullscreenStyle->setZIndex(INT_MAX); |
| 101 fullscreenStyle->updateIsStackingContext(false, false); | |
|
rune
2016/06/09 09:10:25
Multiple bools like this hurts readability.
alancutter (OOO until 2018)
2016/06/10 04:59:30
Replaced with enums though it looks a bit ugly.
| |
| 101 | 102 |
| 102 fullscreenStyle->setFontDescription(FontDescription()); | 103 fullscreenStyle->setFontDescription(FontDescription()); |
| 103 fullscreenStyle->font().update(nullptr); | 104 fullscreenStyle->font().update(nullptr); |
| 104 | 105 |
| 105 fullscreenStyle->setDisplay(FLEX); | 106 fullscreenStyle->setDisplay(FLEX); |
| 106 fullscreenStyle->setJustifyContentPosition(ContentPositionCenter); | 107 fullscreenStyle->setJustifyContentPosition(ContentPositionCenter); |
| 107 fullscreenStyle->setAlignItemsPosition(ItemPositionCenter); | 108 fullscreenStyle->setAlignItemsPosition(ItemPositionCenter); |
| 108 fullscreenStyle->setFlexDirection(FlowColumn); | 109 fullscreenStyle->setFlexDirection(FlowColumn); |
| 109 | 110 |
| 110 fullscreenStyle->setPosition(FixedPosition); | 111 fullscreenStyle->setPosition(FixedPosition); |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 196 m_placeholder->setStyleWithWritingModeOfParent(style); | 197 m_placeholder->setStyleWithWritingModeOfParent(style); |
| 197 if (parent()) { | 198 if (parent()) { |
| 198 parent()->addChildWithWritingModeOfParent(m_placeholder, this); | 199 parent()->addChildWithWritingModeOfParent(m_placeholder, this); |
| 199 parent()->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation( LayoutInvalidationReason::Fullscreen); | 200 parent()->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation( LayoutInvalidationReason::Fullscreen); |
| 200 } | 201 } |
| 201 } else { | 202 } else { |
| 202 m_placeholder->setStyle(style); | 203 m_placeholder->setStyle(style); |
| 203 m_placeholder->setStyleWithWritingModeOfParent(style); | 204 m_placeholder->setStyleWithWritingModeOfParent(style); |
| 204 } | 205 } |
| 205 } | 206 } |
| OLD | NEW |