Skip to content

Commit 797ebef

Browse files
committed
Repeated slashes should be arranged in file scheme
Repeated slashes should be arranged in not only the http scheme, but also the file scheme as well. Tests: Fixes: whatwg#232
1 parent b087fe2 commit 797ebef

File tree

1 file changed

+39
-18
lines changed

1 file changed

+39
-18
lines changed

url.bs

+39-18
Original file line numberDiff line numberDiff line change
@@ -1354,24 +1354,26 @@ string <var>input</var>, optionally with a <a>base URL</a> <var>base</var>, opti
13541354

13551355
<li><p>Set <var>buffer</var> to the empty string.
13561356

1357-
<li><p>If <var>state override</var> is given, terminate this algorithm.
1357+
<li><p>If <var>state override</var> is given, terminate this algorithm
13581358

13591359
<li>
1360-
<p>If <var>url</var>'s <a for=url>scheme</a> is "<code>file</code>", run these
1361-
subsubsteps:
1362-
1360+
<p>Otherwise, if <var>url</var> <a>is special</a>, <var>base</var> is non-null, and
1361+
<var>base</var>'s <a for=url>scheme</a> is equal to <var>url</var>'s <a for=url>scheme</a>, run these subsubsteps:
13631362
<ol>
1364-
<li><p>If <a>remaining</a> does not start with "<code>//</code>",
1365-
<a>syntax violation</a>.
1366-
1367-
<li><p>Set <var>state</var> to <a>file state</a>.
1363+
<li>
1364+
<p>If <var>url</var>'s <a for=url>scheme</a> is "<code>file</code>", run these
1365+
subsubsteps:
1366+
1367+
<ol>
1368+
<li><p>If <a>remaining</a> does not start with "<code>//</code>",
1369+
<a>syntax violation</a>.
1370+
1371+
<li><p>Set <var>state</var> to <a>file state</a>.
1372+
</ol>
1373+
<li>
1374+
<p>Set <var>state</var> to <a>special relative or authority state</a>.</p>
1375+
</li>
13681376
</ol>
1369-
1370-
<li>
1371-
<p>Otherwise, if <var>url</var> <a>is special</a>, <var>base</var> is non-null, and
1372-
<var>base</var>'s <a for=url>scheme</a> is equal to <var>url</var>'s <a for=url>scheme</a>,
1373-
set <var>state</var> to <a>special relative or authority state</a>.
1374-
13751377
<p class="note no-backref">This means that <var>base</var>'s
13761378
<a for=url>cannot-be-a-base-URL flag</a> is unset.
13771379

@@ -1560,11 +1562,30 @@ string <var>input</var>, optionally with a <a>base URL</a> <var>base</var>, opti
15601562

15611563
<dt><dfn>special authority ignore slashes state</dfn>
15621564
<dd>
1563-
<p>If <a>c</a> is neither "<code>/</code>" nor "<code>\</code>", set <var>state</var>
1564-
to <a>authority state</a>, and decrease <var>pointer</var> by one.
1565-
1566-
<p>Otherwise, <a>syntax violation</a>.
1565+
<ol>
1566+
<li>
1567+
<p>If <a>c</a> is neither "<code>/</code>" nor "<code>\</code>", run these substeps:
1568+
<ol>
1569+
<li>
1570+
<p>If <var>url</var>'s <a for=url>scheme</a> is "<code>file</code>", run these
1571+
subsubsteps:
1572+
1573+
<ol>
1574+
<li><p>If <a>remaining</a> does not start with "<code>//</code>",
1575+
<a>syntax violation</a>.
1576+
1577+
<li><p>Set <var>state</var> to <a>file state</a>.
1578+
</ol>
1579+
<li>
1580+
<p>Otherwise, set <var>state</var>
1581+
to <a>authority state</a>, and decrease <var>pointer</var> by one.</p>
1582+
</li>
1583+
</ol>
15671584

1585+
<li>
1586+
<p>Otherwise, <a>syntax violation</a>.
1587+
</li>
1588+
</ol>
15681589
<dt><dfn>authority state</dfn>
15691590
<dd>
15701591
<ol>

0 commit comments

Comments
 (0)