https://github.com/mozilla/gecko-dev
Raw File
Tip revision: a8beaa69d854aed56f3289ae9514a12523d1b5a9 authored by Mike Hommey on 17 March 2013, 07:03:05 UTC
Bug 849497 - Enable getUserMedia in xulrunner. r=bsmedberg, a=lsblakk
Tip revision: a8beaa6
select-required-valid-changed-1.html
<!DOCTYPE html>
<html class='reftest-wait'>
  <!-- Test: if select is required and has a selected option and the selection
             did changed, :-moz-ui-valid should apply. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body onload="document.getElementById('s').selectedIndex = 0;
                document.documentElement.className = '';">
    <select id='s' class='valid' required>
      <option>foo</option>
    </select>
  </body>
</html>
back to top