mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 09:38:11 +00:00
LibWeb: Turn <table width> into the CSS width property
This commit is contained in:
parent
ca41c2e4a0
commit
c5a3d99dd5
2 changed files with 14 additions and 1 deletions
|
@ -25,6 +25,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <LibWeb/DOM/HTMLTableElement.h>
|
#include <LibWeb/DOM/HTMLTableElement.h>
|
||||||
|
#include <LibWeb/Parser/CSSParser.h>
|
||||||
|
|
||||||
namespace Web {
|
namespace Web {
|
||||||
|
|
||||||
|
@ -37,4 +38,13 @@ HTMLTableElement::~HTMLTableElement()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void HTMLTableElement::apply_presentational_hints(StyleProperties& style) const
|
||||||
|
{
|
||||||
|
for_each_attribute([&](auto& name, auto& value) {
|
||||||
|
if (name == HTML::AttributeNames::width) {
|
||||||
|
style.set_property(CSS::PropertyID::Width, parse_css_value(value));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,10 +30,13 @@
|
||||||
|
|
||||||
namespace Web {
|
namespace Web {
|
||||||
|
|
||||||
class HTMLTableElement : public HTMLElement {
|
class HTMLTableElement final : public HTMLElement {
|
||||||
public:
|
public:
|
||||||
HTMLTableElement(Document&, const FlyString& tag_name);
|
HTMLTableElement(Document&, const FlyString& tag_name);
|
||||||
virtual ~HTMLTableElement() override;
|
virtual ~HTMLTableElement() override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
virtual void apply_presentational_hints(StyleProperties&) const override;
|
||||||
};
|
};
|
||||||
|
|
||||||
template<>
|
template<>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue