Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 05_navigation.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h3>'eager'</h3>
<h3>'none'</h3>
<p>The remote end MUST not do any checks against "<code>document.readyState</code>".</p>

<p>All WebDriver implementations MUST support the <code>normal</code> and <code>eager</code> modes and SHOULD support the <code>conservative</code> and <code>none</code> modes. If no page loading strategy is chosen, then <code>normal</code> MUST be the default.
<p>All WebDriver implementations MUST support the <code>normal</code> and <code>eager</code> modes and SHOULD support the <code>none</code> mode. If no page loading strategy is chosen, then <code>normal</code> MUST be the default.
In addition, implementors MAY add additional page loading strategies.</p>
</section>

Expand All @@ -50,7 +50,7 @@ <h3>get()</h3>

<ul>
<li>HTTP redirects MUST be automatically followed without responding to the command.</li>
<li>When a page contains a META tag with the "http-equiv" attribute set to "refresh", a response MUST be returned if the timeout is greater than 1 second and the other criteria for determining whether a page is loaded are met. When the refresh period is 1 second or less and the page loading strategy is "normal" or "conservative" implementations MUST wait for the refresh to complete before responding.</li>
<li>When a page contains a META tag with the "http-equiv" attribute set to "refresh", a response MUST be returned if the timeout is greater than 1 second and the other criteria for determining whether a page is loaded are met. When the refresh period is 1 second or less and the page loading strategy is "normal" implementations MUST wait for the refresh to complete before responding.</li>
<li>If any modal dialog box, such as those opened by on <code>window.onbeforeunload</code> or <code>window.alert</code>, is opened at any point in the page load, a response MUST be sent.</li>
<li>If a 401 response is seen by the browser, a response MUST be sent. That is, if BASIC, DIGEST, NTLM or similar authentication is required, the page load is assumed to be complete. This does not include FORM-based authentication.</li>
</ul>
Expand Down
4 changes: 2 additions & 2 deletions webdriver-spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ <h3>'eager'</h3>
<h3>'none'</h3>
<p>The remote end MUST not do any checks against "<code>document.readyState</code>".</p>

<p>All WebDriver implementations MUST support the <code>normal</code> and <code>eager</code> modes and SHOULD support the <code>conservative</code> and <code>none</code> modes. If no page loading strategy is chosen, then <code>normal</code> MUST be the default.
<p>All WebDriver implementations MUST support the <code>normal</code> and <code>eager</code> modes and SHOULD support the <code>none</code> mode. If no page loading strategy is chosen, then <code>normal</code> MUST be the default.
In addition, implementors MAY add additional page loading strategies.</p>
</section>

Expand All @@ -580,7 +580,7 @@ <h3>get()</h3>

<ul>
<li>HTTP redirects MUST be automatically followed without responding to the command.</li>
<li>When a page contains a META tag with the "http-equiv" attribute set to "refresh", a response MUST be returned if the timeout is greater than 1 second and the other criteria for determining whether a page is loaded are met. When the refresh period is 1 second or less and the page loading strategy is "normal" or "conservative" implementations MUST wait for the refresh to complete before responding.</li>
<li>When a page contains a META tag with the "http-equiv" attribute set to "refresh", a response MUST be returned if the timeout is greater than 1 second and the other criteria for determining whether a page is loaded are met. When the refresh period is 1 second or less and the page loading strategy is "normal" implementations MUST wait for the refresh to complete before responding.</li>
<li>If any modal dialog box, such as those opened by on <code>window.onbeforeunload</code> or <code>window.alert</code>, is opened at any point in the page load, a response MUST be sent.</li>
<li>If a 401 response is seen by the browser, a response MUST be sent. That is, if BASIC, DIGEST, NTLM or similar authentication is required, the page load is assumed to be complete. This does not include FORM-based authentication.</li>
</ul>
Expand Down