From fdbad6284c6884a3d5b0b1c125b26711fbe585f8 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 9 Oct 2019 21:25:29 +0200 Subject: LibHTML: Implement the element Just in time for Serenity's 1st birthday, here is the element! This patch adds a bunch of different mechanisms to enable partial repaints of the layout tree (LayoutNode::set_needs_display())) It also adds LayoutNode::is_visible(), which can be toggled to prevent a LayoutNode from rendering anything (it still takes up space though.) --- Libraries/LibHTML/CSS/Default.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Libraries/LibHTML/CSS/Default.css') diff --git a/Libraries/LibHTML/CSS/Default.css b/Libraries/LibHTML/CSS/Default.css index af2082129a..103544b5b9 100644 --- a/Libraries/LibHTML/CSS/Default.css +++ b/Libraries/LibHTML/CSS/Default.css @@ -97,3 +97,7 @@ hr { border-color: #888888; border-style: inset; } + +blink { + display: inline; +} -- cgit v1.2.3