Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 7925

Show
Ignore:
Timestamp:
10/16/07 03:08:31 (11 months ago)
Author:
andrew
Message:

* Change Selector to use the non-XPath approach for Safari 3 because of bugs in its version of document.evaluate. [Andrew Dupont]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • spinoffs/prototype/trunk/CHANGELOG

    r7923 r7925  
    11*SVN* 
     2 
     3* Changed Selector to use the non-XPath approach for Safari 3 because of bugs in its version of document.evaluate. [Andrew Dupont] 
    24 
    35* Changed the Selector regex that tests whether the selector can be expressed in XPath; added :checked, since XPath can't detect all scenarios in which an <input> is checked. Fixes #9776. [StelardActek, kangax, Andrew Dupont] 
  • spinoffs/prototype/trunk/src/prototype.js

    r7804 r7925  
    2929if (Prototype.Browser.MobileSafari) 
    3030  Prototype.BrowserFeatures.SpecificElementExtensions = false; 
     31   
     32if (Prototype.Browser.WebKit) 
     33  Prototype.BrowserFeatures.XPath = false; 
    3134 
    3235<%= include 'base.js', 'string.js' %>