summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CSS/StyleSheetList.cpp
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2021-10-15 19:38:39 +0100
committerLinus Groh <mail@linusgroh.de>2021-10-15 21:05:35 +0100
commite8d4236bbd4c0d78c35c212efd541cda6db72060 (patch)
tree0731d5e60fb605c2b21465b210c0808578ce8032 /Userland/Libraries/LibWeb/CSS/StyleSheetList.cpp
parentdf85832f3224ad9557f3b03cc00622dadd82abcb (diff)
downloadserenity-e8d4236bbd4c0d78c35c212efd541cda6db72060.zip
LibWeb: Use W3C urls for CSSOM spec links
https://www.w3.org/TR/cssom/ is the more permanent home of the CSSOM specification's latest version, and is up to date with the draft spec. Also, https://drafts.csswg.org/ has been down multiple times recently which made looking things up a pain.
Diffstat (limited to 'Userland/Libraries/LibWeb/CSS/StyleSheetList.cpp')
-rw-r--r--Userland/Libraries/LibWeb/CSS/StyleSheetList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/StyleSheetList.cpp b/Userland/Libraries/LibWeb/CSS/StyleSheetList.cpp
index cf074746c9..3b309bc97f 100644
--- a/Userland/Libraries/LibWeb/CSS/StyleSheetList.cpp
+++ b/Userland/Libraries/LibWeb/CSS/StyleSheetList.cpp
@@ -24,7 +24,7 @@ StyleSheetList::StyleSheetList(DOM::Document& document)
{
}
-// https://drafts.csswg.org/cssom/#ref-for-dfn-supported-property-indices%E2%91%A1
+// https://www.w3.org/TR/cssom/#ref-for-dfn-supported-property-indices%E2%91%A1
bool StyleSheetList::is_supported_property_index(u32 index) const
{
// The object’s supported property indices are the numbers in the range zero to one less than the number of CSS style sheets represented by the collection.