1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-13 14:22:18 +00:00
serenity/Base/home/anon/www
myphs 0891f860f7 LibWeb: Add CSS property 'border'
This makes it possible to write shorter CSS. Instead of writing
.foo {
        border-width: 3px;
        border-style: solid;
        border-color: blue;
}
it is now possible to write
.foo {
        border: 3px solid blue;
}
while the order of values is irrelevant.
Currently only the basic values are supported. More values should be
added in the future.

Three more value specific parse functions were added:
parse_line_width, parse_color, and parse_line_style

Additionally a few test cases were added to borders.html.
2020-03-20 21:40:55 +01:00
..
90s-bg.png LibHTML: Implement basic tiled background image support 2019-10-19 11:49:46 +02:00
acid1.html Base: Import the 1st and 2nd Acid tests for web standards compliance 2019-11-25 17:48:51 +01:00
acid2.html Base: Import the 1st and 2nd Acid tests for web standards compliance 2019-11-25 17:48:51 +01:00
afrag.html LibHTML+Browser: Support scrolling to anchor with <a href="#foo"> 2019-10-20 10:07:26 +02:00
alert.html LibWeb: Parse <script> elements and run any JavaScript found inside 2020-03-14 13:25:38 +01:00
attrselectors.html LibHTML: Handle stand-alone attribute selectors 2019-11-21 20:19:00 +01:00
blink.html LibHTML: Implement the <blink> element 2019-10-09 21:25:29 +02:00
bmfw.html Base: Add a local copy of bettermotherfuckingwebsite.com for testing 2019-11-07 21:40:04 +01:00
borders.html LibWeb: Add CSS property 'border' 2020-03-20 21:40:55 +01:00
br.html LibHTML: Implement the <br> element for line breaking 2019-10-12 13:47:49 +02:00
canvas.html LibWeb: Add <canvas> element and start fleshing out CRC2D 2020-03-19 19:07:56 +01:00
css.html Base: Rename the "html" test directory to "www" 2019-10-01 20:16:09 +02:00
dom.html LibWeb: Implement Document.getElementById() 2020-03-14 13:25:40 +01:00
empty.html LibHTML: Support the :empty pseudo class 2019-12-16 19:46:02 +01:00
events.html LibJS: Prefer FunctionDeclaration if a statement begins with "function" 2020-03-19 18:07:07 +01:00
first-child.html LibHTML: Support the :first-child and :last-child pseudo classes 2019-12-16 19:34:52 +01:00
form.html LibHTML: Implement basic <form> and <input> element support 2019-11-25 21:21:55 +01:00
hover.html LibHTML: Implement basic :hover pseudo-class support 2019-10-14 17:55:04 +02:00
images.html LibHTML: Add the <center> element 2019-10-16 20:33:00 +02:00
last-child.html LibHTML: Support the :first-child and :last-child pseudo classes 2019-12-16 19:34:52 +01:00
link.css LibHTML: Start adding support for <link rel="stylesheet"> 2019-10-07 19:06:47 +02:00
link.html LibHTML: Start adding support for <link rel="stylesheet"> 2019-10-07 19:06:47 +02:00
lorem.html LibHTML: Implement "text-align: justify" 2019-10-20 12:55:55 +02:00
only-child.html LibHTML: Support the :only-child pseudo class 2019-12-16 19:52:11 +01:00
phint.html Base: Add a little HTML test for presentational hints 2019-10-04 21:15:52 +02:00
selectors.html LibDraw: Parse some more color string formats found on the web 2019-10-06 21:40:14 +02:00
small.html Base: Rename the "html" test directory to "www" 2019-10-01 20:16:09 +02:00
welcome.html LibWeb: Add <canvas> element and start fleshing out CRC2D 2020-03-19 19:07:56 +01:00