mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +00:00
LibWeb: Use W3C urls for CSS-DISPLAY spec links
This commit is contained in:
parent
d28eeeb207
commit
7879b98f60
Notes:
sideshowbarker
2024-07-18 02:20:11 +09:00
Author: https://github.com/AtkinsSJ
Commit: 7879b98f60
Pull-request: https://github.com/SerenityOS/serenity/pull/10492
2 changed files with 3 additions and 3 deletions
|
@ -13,7 +13,7 @@
|
|||
|
||||
namespace Web::Layout {
|
||||
|
||||
// https://drafts.csswg.org/css-display/#block-formatting-context
|
||||
// https://www.w3.org/TR/css-display/#block-formatting-context
|
||||
class BlockFormattingContext : public FormattingContext {
|
||||
public:
|
||||
explicit BlockFormattingContext(BlockContainer&, FormattingContext* parent);
|
||||
|
@ -29,7 +29,7 @@ public:
|
|||
static float compute_theoretical_height(Box const&);
|
||||
void compute_width(Box&);
|
||||
|
||||
// https://drafts.csswg.org/css-display/#block-formatting-context-root
|
||||
// https://www.w3.org/TR/css-display/#block-formatting-context-root
|
||||
BlockContainer& root() { return static_cast<BlockContainer&>(context_box()); }
|
||||
BlockContainer const& root() const { return static_cast<BlockContainer const&>(context_box()); }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue