Skip to content

Commit

Permalink
Serialize URLs in the map
Browse files Browse the repository at this point in the history
  • Loading branch information
yoavweiss committed Apr 30, 2024
1 parent 7c0ce99 commit b4e94b6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -106326,8 +106326,11 @@ document.querySelector("button").addEventListener("click", bound);
data-x="concept-import-map-integrity">integrity</span>[<var>url</var>] does not <span
data-x="map exists">exist</span>, then return the empty string.</p></li>

<li><p>Let <var>serializedURL</var> be the result of applying the <span
data-x="concept-url-serializer">URL serializer</span> to <var>url</var>.</p></li>

<li><p>Return <var>map</var>'s <span
data-x="concept-import-map-integrity">integrity</span>[<var>url</var>].</p></li>
data-x="concept-import-map-integrity">integrity</span>[<var>serializedURL</var>].</p></li>
</ol>

<hr>
Expand Down Expand Up @@ -108811,7 +108814,10 @@ dictionary <dfn dictionary>PromiseRejectionEventInit</dfn> : <span>EventInit</sp
</ol>
</li>

<li><p>Set <var>normalized</var>[<var>resolvedURL</var>] to <var>value</var>.</p></li>
<li><p>Let <var>serializedURL</var> be the result of applying the <span
data-x="concept-url-serializer">URL serializer</span> to <var>resolvedURL</var>.</p></li>

<li><p>Set <var>normalized</var>[<var>serializedURL</var>] to <var>value</var>.</p></li>
</ol>
</li>

Expand Down

0 comments on commit b4e94b6

Please sign in to comment.