diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-10-09 21:25:29 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-10-09 21:25:29 +0200 |
commit | fdbad6284c6884a3d5b0b1c125b26711fbe585f8 (patch) | |
tree | 97ff4be8efff228ef23486e9324b5b0d44509063 /Libraries/LibHTML/CSS/Default.css | |
parent | 33043941f97e89cfdb2148265dda379a489e5247 (diff) | |
download | serenity-fdbad6284c6884a3d5b0b1c125b26711fbe585f8.zip |
LibHTML: Implement the <blink> element
Just in time for Serenity's 1st birthday, here is the <blink> 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.)
Diffstat (limited to 'Libraries/LibHTML/CSS/Default.css')
-rw-r--r-- | Libraries/LibHTML/CSS/Default.css | 4 |
1 files changed, 4 insertions, 0 deletions
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; +} |