Skip to content

Commit

Permalink
[giow] (1) 'do nothing' doesn't make sense for a getter.
Browse files Browse the repository at this point in the history
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=11856

git-svn-id: http://svn.whatwg.org/webapps@5909 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Feb 18, 2011
1 parent a3fc75d commit 4d9ee10
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions complete.html
Expand Up @@ -68650,12 +68650,12 @@ <h4 id=the-datatransfer-interface><span class=secno>8.7.3 </span>The <code><a hr
must run the following steps:</p>

<ol><li><p>If the <code><a href=#datatransfer>DataTransfer</a></code> object is no longer
associated with a <a href=#drag-data-store>drag data store</a>, abort these steps.
Nothing happens.</li>
associated with a <a href=#drag-data-store>drag data store</a>, return the empty
string and abort these steps.</li>

<li><p>If the <a href=#drag-data-store>drag data store</a>'s <a href=#drag-data-store-mode title="drag data
store mode">mode</a> is in the <a href=#concept-dnd-p title=concept-dnd-p>protected mode</a>, abort these steps.
Nothing happens.</li>
store mode">mode</a> is in the <a href=#concept-dnd-p title=concept-dnd-p>protected mode</a>, return the empty
string and abort these steps.</li>

<li><p>Let <var title="">format</var> be the first argument,
<a href=#converted-to-ascii-lowercase>converted to ASCII lowercase</a>.</li>
Expand Down
8 changes: 4 additions & 4 deletions index
Expand Up @@ -68659,12 +68659,12 @@ interface <dfn id=navigatorstorageutils>NavigatorStorageUtils</dfn> {
must run the following steps:</p>

<ol><li><p>If the <code><a href=#datatransfer>DataTransfer</a></code> object is no longer
associated with a <a href=#drag-data-store>drag data store</a>, abort these steps.
Nothing happens.</li>
associated with a <a href=#drag-data-store>drag data store</a>, return the empty
string and abort these steps.</li>

<li><p>If the <a href=#drag-data-store>drag data store</a>'s <a href=#drag-data-store-mode title="drag data
store mode">mode</a> is in the <a href=#concept-dnd-p title=concept-dnd-p>protected mode</a>, abort these steps.
Nothing happens.</li>
store mode">mode</a> is in the <a href=#concept-dnd-p title=concept-dnd-p>protected mode</a>, return the empty
string and abort these steps.</li>

<li><p>Let <var title="">format</var> be the first argument,
<a href=#converted-to-ascii-lowercase>converted to ASCII lowercase</a>.</li>
Expand Down
8 changes: 4 additions & 4 deletions source
Expand Up @@ -78198,13 +78198,13 @@ interface <dfn>NavigatorStorageUtils</dfn> {
<ol>

<li><p>If the <code>DataTransfer</code> object is no longer
associated with a <span>drag data store</span>, abort these steps.
Nothing happens.</p></li>
associated with a <span>drag data store</span>, return the empty
string and abort these steps.</p></li>

<li><p>If the <span>drag data store</span>'s <span title="drag data
store mode">mode</span> is in the <span
title="concept-dnd-p">protected mode</span>, abort these steps.
Nothing happens.</p></li>
title="concept-dnd-p">protected mode</span>, return the empty
string and abort these steps.</p></li>

<li><p>Let <var title="">format</var> be the first argument,
<span>converted to ASCII lowercase</span>.</p></li>
Expand Down

0 comments on commit 4d9ee10

Please sign in to comment.