Skip to content
This repository was archived by the owner on Mar 19, 2021. It is now read-only.

Commit 0e1bcae

Browse files
committed
Fix spec links to use actual anchors that exists
1 parent 8f14d88 commit 0e1bcae

11 files changed

+11
-11
lines changed

css/css-multicol/extremely-tall-multicol-with-extremely-tall-child-crash.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<title>CSS Multi-column Layout Test: extremely tall multicolumn container with extremely tall inline-block inside</title>
33
<link rel="author" title="Morten Stenshorne" href="[email protected]">
4-
<link rel="help" href="http://www.w3.org/TR/css3-multicol/" title="CSS Multi-column Layout Module Level 1">
4+
<link rel="help" href="https://www.w3.org/TR/css-multicol-1/#the-multi-column-model" title="CSS Multi-column Layout Module Level 1">
55
<meta name="assert" content="This tests that we get no crash if we put an extremely tall inline-block inside an extremely tall multicol container. Engines typically have some maximum limit for how large values they can represent. If the value is large enough to become 'infinity', the engine should still not crash">
66
<!-- Explanation for the CSS values specified below: This test was written for
77
the Chromium Blink engine, which uses a fixed-point 32 bit integer. In this

css/css-multicol/going-out-of-flow-after-spanner.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<title>Taking the sole box after a spanner out of flow, then remove it</title>
33
<link rel="author" title="Morten Stenshorne" href="[email protected]">
4-
<link rel="help" href="http://www.w3.org/TR/css3-multicol/" title="CSS Multi-column Layout Module Level 1">
4+
<link rel="help" href="https://www.w3.org/TR/css-multicol-1/#the-multi-column-model">
55
<meta name="assert" content="An absolutely positioned box is still contained by the multicol container if its containing block is inside the multicol container">
66
<div id="multicol" style="columns:3;">
77
<div style="position:relative;">

css/css-pseudo/first-line-first-letter-insert-crash.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE html>
22
<title>Should not crash when inserting an element inside a :first-line pseudo.</title>
3-
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/">
3+
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-pseudo">
44
<style>
55
p:first-line, p:first-letter {
66
font-family: serif;

css/css-pseudo/idlharness.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!doctype html>
22
<title>CSS Pseudo Element API IDL tests</title>
3-
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/">
3+
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#cssom">
44
<script src="/resources/testharness.js"></script>
55
<script src="/resources/testharnessreport.js"></script>
66
<script src="/resources/WebIDLParser.js"></script>

css/css-text/white-space/break-spaces-tab-005.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<meta charset="utf-8">
33
<title>CSS Text level 3 Test: break-space tabs don't hang</title>
44
<link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
5-
<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-phase-3">
5+
<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-phase-2">
66
<link rel="match" href="reference/break-spaces-tab-005-ref.html">
77
<meta name="assert" content="a sequence of break-spaces tabs at the end of a line does not hang.">
88
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />

css/css-text/white-space/break-spaces-tab-006.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<meta charset="utf-8">
33
<title>CSS Text level 3 Test: break-spaces tabs and spaces don't hang</title>
44
<link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
5-
<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-phase-3">
5+
<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-phase-2">
66
<link rel="match" href="reference/break-spaces-tab-005-ref.html">
77
<meta name="assert" content="a sequence of break-spaces tabs and spaces at the end of a line does not hang, and can wrap after each tab or space.">
88
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />

css/css-text/white-space/pre-wrap-tab-005.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<meta charset="utf-8">
33
<title>CSS Text level 3 Test: pre-wrap tabs hang</title>
44
<link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
5-
<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-phase-3">
5+
<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-phase-2">
66
<link rel="match" href="reference/pre-wrap-001-ref.html">
77
<meta name="assert" content="a sequence of pre-wrap tabs at the end of a line hangs.">
88
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />

css/css-text/white-space/pre-wrap-tab-006.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<meta charset="utf-8">
33
<title>CSS Text level 3 Test: pre-wrap tabs and spaces hang</title>
44
<link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
5-
<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-phase-3">
5+
<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-phase-2">
66
<link rel="match" href="reference/pre-wrap-001-ref.html">
77
<meta name="assert" content="a sequence of pre-wrap tabs and spaces at the end of a line hangs.">
88
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />

css/css-writing-modes/percentage-padding-in-shrink-to-fit.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE html>
22
<link rel="author" title="Morten Stenshorne" href="mailto:[email protected]">
3-
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/">
3+
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#dimension-mapping">
44
<link rel="help" href="https://www.w3.org/TR/CSS22/box.html#propdef-padding-top">
55
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=966795">
66
<link rel="match" href="../reference/nothing.html">

css/mediaqueries/mq-calc-006.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<link rel="author" title="Xiaocheng Hu" href="[email protected]">
33
<link rel="help" href="http://www.w3.org/TR/css3-values/#calc-notation">
4-
<link rel="help" href="http://www.w3.org/TR/css3-mediaqueries/">
4+
<link rel="help" href="https://www.w3.org/TR/css3-mediaqueries/#units">
55
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
66
<meta name="assert" content="The 'in' unit used in calc is not mistaken as 'px'.">
77
<style>

0 commit comments

Comments
 (0)