Google Groups Home
Help | Sign in
Message from discussion Windows Update KB947864 Seems to Foil Some Behaviors
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
Bill Burcham  
View profile
 More options 17 Apr, 14:53
From: Bill Burcham <bill.burc...@gmail.com>
Date: Thu, 17 Apr 2008 06:53:19 -0700 (PDT)
Local: Thurs 17 Apr 2008 14:53
Subject: Re: Windows Update KB947864 Seems to Foil Some Behaviors
This turned out to have nothing to do with Lowpro and everything to do
w/ Prototype 1.6.0_rc0.  Some attribute selectors fail in that version
of Prototype in the presence of KB947864.

This example works fine w/ Prototype 1.6.0.2 but if you run it w/
1.6.0_rc0 you see no alert (popups):

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/
TR/html4/stric...">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Test</title>
<script type="text/javascript" src="prototype.js"></script>
<script>
  Event.observe(window, 'load', function(){

  var sel = $('select1').down('[selected]');
  alert("attr selector doesn't crash when attr present");

  sel = $('select2').down('[selected]');
  alert("attr selector doesn't crash when attr NOT present");
  });
</script>
</head>
<body>
   <form method="get" action="/">
      <select id="select1" name="foo">
         <option value="bricks" selected>bricks</option>
      </select>

      <select id="select2" name="bar">
         <option value="boards">boards</option>
      </select>
   </form>
</body>
</html>


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2008 Google