commonwatir 3.0.0.rc3 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. data/README +24 -0
  2. data/Rakefile +3 -14
  3. data/commonwatir.gemspec +18 -0
  4. data/lib/watir.rb +1 -14
  5. metadata +19 -131
  6. data/CHANGES +0 -712
  7. data/LICENSE +0 -34
  8. data/README.rdoc +0 -101
  9. data/VERSION +0 -1
  10. data/lib/watir/assertions.rb +0 -44
  11. data/lib/watir/browser.rb +0 -149
  12. data/lib/watir/browsers.rb +0 -13
  13. data/lib/watir/element_extensions.rb +0 -69
  14. data/lib/watir/exceptions.rb +0 -50
  15. data/lib/watir/matches.rb +0 -23
  16. data/lib/watir/options.rb +0 -56
  17. data/lib/watir/testcase.rb +0 -97
  18. data/lib/watir/util.rb +0 -35
  19. data/lib/watir/version.rb +0 -4
  20. data/lib/watir/wait.rb +0 -41
  21. data/lib/watir/wait_helper.rb +0 -12
  22. data/lib/watir/waiter.rb +0 -98
  23. data/unittests/attach_to_existing_window_test.rb +0 -70
  24. data/unittests/browser_test.rb +0 -38
  25. data/unittests/buttons_test.rb +0 -288
  26. data/unittests/dd_test.rb +0 -84
  27. data/unittests/dl_test.rb +0 -82
  28. data/unittests/dt_test.rb +0 -82
  29. data/unittests/element_collections_test.rb +0 -22
  30. data/unittests/element_test.rb +0 -24
  31. data/unittests/em_test.rb +0 -81
  32. data/unittests/form2_test.rb +0 -22
  33. data/unittests/html/blankpage.html +0 -11
  34. data/unittests/html/buttons1.html +0 -40
  35. data/unittests/html/buttons2.html +0 -60
  36. data/unittests/html/definition_lists.html +0 -48
  37. data/unittests/html/elements.html +0 -13
  38. data/unittests/html/emphasis.html +0 -12
  39. data/unittests/html/entertainment_com.html +0 -667
  40. data/unittests/html/frame_buttons.html +0 -4
  41. data/unittests/html/images/button.jpg +0 -0
  42. data/unittests/html/pass.html +0 -10
  43. data/unittests/html/phrase_elements.html +0 -15
  44. data/unittests/html/select_lists.html +0 -18
  45. data/unittests/html/utf8.html +0 -12
  46. data/unittests/html/visibility.html +0 -90
  47. data/unittests/html/wait.html +0 -15
  48. data/unittests/html/watir_unit_tests.css +0 -64
  49. data/unittests/html/whitespace.html +0 -29
  50. data/unittests/options.yml.example +0 -13
  51. data/unittests/select_list_test.rb +0 -19
  52. data/unittests/setup.rb +0 -17
  53. data/unittests/setup/browser.rb +0 -14
  54. data/unittests/setup/capture_io_helper.rb +0 -17
  55. data/unittests/setup/filter.rb +0 -24
  56. data/unittests/setup/lib.rb +0 -22
  57. data/unittests/setup/options.rb +0 -29
  58. data/unittests/setup/testUnitAddons.rb +0 -8
  59. data/unittests/setup/watir-unittest.rb +0 -78
  60. data/unittests/strong_test.rb +0 -46
  61. data/unittests/utf8_test.rb +0 -24
  62. data/unittests/visibility_test.rb +0 -47
  63. data/unittests/wait_test.rb +0 -126
  64. data/unittests/whitespace_test.rb +0 -46
@@ -1,82 +0,0 @@
1
- $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
2
- require 'unittests/setup'
3
-
4
- class TC_Dt < Test::Unit::TestCase
5
- include Watir::Exception
6
- location __FILE__
7
-
8
- def setup
9
- @html_dir = "#{File.dirname(__FILE__)}/html"
10
- uses_page "definition_lists.html"
11
- end
12
-
13
- def test_exists
14
- assert browser.dt(:id, "experience").exists?, "Could not find <dt> by :id"
15
- assert browser.dt(:class, "current-industry").exists?, "Could not find <dt> by :class"
16
- assert browser.dt(:xpath, "//dt[@id='experience']").exists?, "Could not find <dt> by :xpath"
17
- assert browser.dt(:index, 1).exists?, "Could not find <dt> by :index"
18
- end
19
-
20
- def test_does_not_exist
21
- assert !browser.dt(:id, 'no_such_id').exists?, "Found non-existing <dt>"
22
- end
23
-
24
- def test_attribute_class_name
25
- assert_equal "industry", browser.dt(:id, "experience").class_name
26
- assert_equal "", browser.dt(:id, 'education').class_name
27
- assert_raises(UnknownObjectException) do
28
- browser.dt(:id, 'no_such_id').class_name
29
- end
30
- end
31
-
32
- def test_attribute_id
33
- assert_equal "experience", browser.dt(:class, 'industry').id
34
- assert_equal "", browser.dt(:class, 'current-industry').id
35
- assert_raises(UnknownObjectException) do
36
- browser.dt(:id, 'no_such_id').id
37
- end
38
- end
39
-
40
- def test_attribute_title
41
- assert_equal "experience", browser.dt(:id, 'experience').title
42
- assert_equal "", browser.dt(:class, 'noop').title
43
- assert_raises(UnknownObjectException) do
44
- browser.dt(:id, 'no_such_id').title
45
- end
46
- end
47
-
48
- def test_attribute_text
49
- assert_equal "Experience", browser.dt(:id, "experience").text
50
- assert_equal "", browser.dt(:class, 'noop').text
51
- assert_raises(UnknownObjectException) do
52
- browser.dt(:id, 'no_such_id').text
53
- end
54
- end
55
-
56
- tag_method :test_dts_iterator, :fails_on_ie
57
- def test_dts_iterator
58
- assert_equal(11, browser.dts.length)
59
- assert_equal("experience", browser.dts[1].id)
60
-
61
- browser.dts.each_with_index do |dt, idx|
62
- assert_equal(browser.dt(:index,idx+1).text, dt.text)
63
- assert_equal(browser.dt(:index,idx+1).id, dt.id)
64
- assert_equal(browser.dt(:index,idx+1).class_name , dt.class_name)
65
- assert_equal(browser.dt(:index,idx+1).title, dt.title)
66
- end
67
- end
68
-
69
- tag_method :test_dts_iterator_ie, :fails_on_firefox
70
- def test_dts_iterator_ie
71
- assert_equal(11, browser.dts.length)
72
- assert_equal("experience", browser.dts[0].id)
73
-
74
- browser.dts.each_with_index do |dt, idx|
75
- assert_equal(browser.dt(:index,idx).text, dt.text)
76
- assert_equal(browser.dt(:index,idx).id, dt.id)
77
- assert_equal(browser.dt(:index,idx).class_name , dt.class_name)
78
- assert_equal(browser.dt(:index,idx).title, dt.title)
79
- end
80
- end
81
-
82
- end
@@ -1,22 +0,0 @@
1
- $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
2
- require 'unittests/setup'
3
-
4
- class TC_ElementCollections < Test::Unit::TestCase
5
- location __FILE__
6
-
7
- def setup
8
- uses_page "definition_lists.html"
9
- end
10
-
11
- def test_first
12
- assert_equal "experience", browser.dls.first.title
13
- assert_equal "industry", browser.dts.first.class_name
14
- end
15
-
16
- def test_last
17
- assert_equal 'noop', browser.dls.last.id
18
- assert_equal 'noop', browser.dds.last.class_name
19
- end
20
- end
21
-
22
-
@@ -1,24 +0,0 @@
1
- $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
2
- require 'unittests/setup'
3
-
4
- class TC_Elements < Test::Unit::TestCase
5
- include Watir::Exception
6
- location __FILE__
7
-
8
- def setup
9
- @html_dir = "#{File.dirname(__FILE__)}/html"
10
- uses_page "elements.html"
11
- end
12
-
13
- def test_objects_in_element_exists
14
- assert browser.div(:id => "buttons1").exists?
15
- assert browser.button(:name => "b1").exists?
16
- assert browser.div(:id => "buttons1").button(:name => "b1").exists?
17
-
18
- assert !browser.div(:id => "buttons1").button(:id => 'doesntexist').exists?
19
- assert !browser.div(:id => "doesntexist").button(:name => "b1").exists?
20
- assert !browser.div(:id => "doesntexist").button(:id => "doesntexist").exists?
21
- end
22
-
23
- end
24
-
@@ -1,81 +0,0 @@
1
- $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
2
- require 'unittests/setup'
3
-
4
- class TC_Em < Test::Unit::TestCase
5
- include Watir::Exception
6
- location __FILE__
7
-
8
- def setup
9
- uses_page "emphasis.html"
10
- end
11
-
12
- def test_exists
13
- assert browser.em(:id, "em-one").exists?, "Could not find <em> by :id"
14
- assert browser.em(:class, "em-class-one").exists?, "Could not find <em> by :class"
15
- assert browser.em(:xpath, "//em[@id='em-one']").exists?, "Could not find <em> by :xpath"
16
- assert browser.em(:index, 1).exists?, "Could not find <em> by :index"
17
- end
18
-
19
- def test_does_not_exist
20
- assert !browser.em(:id, 'no_such_id').exists?, "Found non-existing <em>"
21
- end
22
-
23
- def test_attribute_class_name
24
- assert_equal "em-class-one", browser.em(:id, "em-one").class_name
25
- assert_equal "", browser.em(:id, 'em-two').class_name
26
- assert_raises(UnknownObjectException) do
27
- browser.em(:id, 'no_such_id').class_name
28
- end
29
- end
30
-
31
- def test_attribute_id
32
- assert_equal "em-one", browser.em(:class, 'em-class-one').id
33
- assert_equal "", browser.em(:class, 'em-class-two').id
34
- assert_raises(UnknownObjectException) do
35
- browser.em(:id, 'no_such_id').id
36
- end
37
- end
38
-
39
- def test_attribute_title
40
- assert_equal "one", browser.em(:class, 'em-class-one').title
41
- assert_equal "", browser.em(:id, 'em-two').title
42
- assert_raises(UnknownObjectException) do
43
- browser.em(:id, 'no_such_id').title
44
- end
45
- end
46
-
47
- def test_attribute_text
48
- assert_equal "one text", browser.em(:id, "em-one").text
49
- assert_equal "", browser.em(:class, 'em-class-two').text
50
- assert_raises(UnknownObjectException) do
51
- browser.em(:id, 'no_such_id').text
52
- end
53
- end
54
-
55
- tag_method :test_em_iterator, :fails_on_ie
56
- def test_em_iterator
57
- assert_equal(3, browser.ems.length)
58
- assert_equal("two text", browser.ems[2].text)
59
-
60
- browser.ems.each_with_index do |em, idx|
61
- assert_equal browser.em(:index, idx+1).text, em.text
62
- assert_equal browser.em(:index, idx+1).id, em.id
63
- assert_equal browser.em(:index, idx+1).class_name, em.class_name
64
- assert_equal browser.em(:index, idx+1).title, em.title
65
- end
66
- end
67
-
68
- tag_method :test_em_iterator_ie, :fails_on_firefox
69
- def test_em_iterator_ie
70
- assert_equal(3, browser.ems.length)
71
- assert_equal("two text", browser.ems[1].text)
72
-
73
- browser.ems.each_with_index do |em, idx|
74
- assert_equal browser.em(:index, idx).text, em.text
75
- assert_equal browser.em(:index, idx).id, em.id
76
- assert_equal browser.em(:index, idx).class_name, em.class_name
77
- assert_equal browser.em(:index, idx).title, em.title
78
- end
79
- end
80
-
81
- end
@@ -1,22 +0,0 @@
1
- $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
2
- require 'unittests/setup'
3
-
4
- class TC_Form_Entertainment < Test::Unit::TestCase
5
- location __FILE__
6
- def setup
7
- uses_page "entertainment_com.html"
8
- end
9
- def test_bare_button
10
- assert_nothing_raised do
11
- browser.button(:src, Regexp.new('/images/button_continue.gif')).click
12
- end
13
- end
14
-
15
- # http://jira.openqa.org/browse/WTR-80
16
- tag_method :test_button_in_form, :fails_on_ie
17
- def test_button_in_form
18
- assert_nothing_raised do
19
- browser.form(:name, 'shipaddress').button(:src, Regexp.new('/images/button_continue.gif')).click
20
- end
21
- end
22
- end
@@ -1,11 +0,0 @@
1
- <html>
2
- <head>
3
- <title>
4
- Test page for buttons
5
- </title>
6
- </head>
7
- <body>
8
- <br>
9
- Blank page to fill in the frames
10
- </body>
11
- </html>
@@ -1,40 +0,0 @@
1
- <html>
2
- <head>
3
- <title>
4
- Test page for buttons
5
- </title>
6
- <link rel="stylesheet" type="text/css" href="watir_unit_tests.css">
7
- </head>
8
- <body>
9
- <br>
10
- <br>
11
- <table>
12
- <tr>
13
- <td>
14
- <form name = test1 method = get action = pass.html>
15
-
16
- <input type = button class="italic_button" name = b1 id = b2 value = "Click Me" onClick="javascript:document.location='pass.html';" title = "this is button1">
17
- <br><input type = button name = b4 id=b5 value = "Disabled Button" onClick="javascript:document.location='fail.html';" disabled>
18
-
19
- </form>
20
- <td> The top button is for testing buttons with names
21
- <br> The second button is used for testing disabled buttons
22
-
23
-
24
- <tr>
25
- <td>
26
- <form name = test2 method = get action = pass2.html>
27
- <br><input type = submit value=Submit>
28
- </form>
29
- <td> This button is a submit ( the others are buttons)
30
-
31
- <tr>
32
- <td>
33
- <form name = test3 method = get action = pass3.html>
34
- <br><input type = image src=images/button.jpg name =sub3>
35
- </form>
36
- <td> This button is an image. It should behave the same as a submit
37
-
38
-
39
-
40
- </html>
@@ -1,60 +0,0 @@
1
- <html>
2
- <head>
3
- <title>
4
- Test page for buttons
5
- </title>
6
- <link rel="stylesheet" type="text/css" href="watir_unit_tests.css">
7
- </head>
8
- <body>
9
- <br>
10
- <br>
11
- <table>
12
- <tr>
13
- <td>
14
- <form name = test1 method = get action = pass.html>
15
-
16
- <input type = button class="italic_button" name = b1 id = b2 value = "Click Me" onClick="javascript:document.location='pass.html';" title = "this is button1">
17
- <br><input type = button name = b4 id=b5 value = "Disabled Button" onClick="javascript:document.location='fail.html';" disabled>
18
- <input type=text id="text_id" value="OldValue" size="20"/>
19
- </form>
20
- </td>
21
- <td> The top button is for testing buttons with names
22
- <br> The second button is used for testing disabled buttons
23
- </td>
24
- </tr>
25
-
26
- <tr>
27
- <td>
28
- <form name = test2 method = get action = pass2.html>
29
- <br><input type = submit value=Submit>
30
- </form>
31
- </td>
32
- <td> This button is a submit ( the others are buttons)
33
- </td>
34
- </tr>
35
- <tr>
36
- <td>
37
- <form name = test3 method = get action = pass3.html>
38
- <br><input type = image src=images/button.jpg name =sub3>
39
- </form>
40
- </td>
41
- <td> This button is an image. It should behave the same as a submit
42
-
43
- </td>
44
- </tr>
45
- <tr>
46
- <td>
47
- <form name = test1 method = get action = pass.html>
48
-
49
- <button class="italic_button" name=b6 id = b7 value="Click Me2" onClick="javascript:document.location='pass.html';" title="this is button2">Click Me2</button>
50
- <br><button name = b8 id=b9 value ="Disabled Button2" onClick="javascript:document.location='fail.html';" disabled>Disabled Button2</button>
51
- <button>Sign In</button>
52
- </td>
53
- </form>
54
- <td> The top button is for testing buttons with names
55
- <br> The second button is used for testing disabled buttons
56
- </td>
57
- </tr>
58
- </table>
59
- </body>
60
- </html>
@@ -1,48 +0,0 @@
1
- <html>
2
- <head>
3
- <meta http-equiv="Content-type" content="text/html; charset=utf-8">
4
- <title>definition_lists</title>
5
- </head>
6
-
7
- <body id="definition_list">
8
- <dl id="experience-list" class="list" title="experience">
9
- <dt id="experience" class="industry" title="experience">Experience</dt>
10
- <dd>11 years</dd>
11
-
12
- <dt id="education" onclick="this.innerHTML='changed'">Education</dt>
13
- <dd title="education" onclick="this.innerHTML='changed'">Master</dd>
14
-
15
- <dt class="current-industry">Current industry</dt>
16
- <dd class="industry">Architecture</dd>
17
-
18
- <dt>Previous industry experience</dt>
19
- <dd class="industry">Architecture</dd>
20
- </dl>
21
-
22
- <dl class="personalia">
23
- <dt id="name" title="name"><div>Name</div></dt>
24
- <dd id="someone" class="name" title="someone">John Doe</dd>
25
-
26
- <dt>Address</dt>
27
- <dd class="address">John Doe</dd>
28
-
29
- <dt>City</dt>
30
- <dd id="city">New York</dd>
31
-
32
- <dt>Country</dt>
33
- <dd>USA</dd>
34
-
35
- <dt>Gender</dt>
36
- <dd>Male</dd>
37
-
38
- <dt>Age</dt>
39
- <dd>35</dd>
40
- </dl>
41
-
42
- <dl id="noop" onclick="this.innerHTML = 'noop'">
43
- <dt class="noop"></dt> <!-- empty node -->
44
- <dd class="noop"></dt> <!-- empty node -->
45
- </dl>
46
-
47
- </body>
48
- </html>
@@ -1,13 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
- <!doctype html>
3
- <head>
4
- <title>Test page for Elements in general</title>
5
- </head>
6
- <body>
7
-
8
- <div id="buttons1">
9
- <input type="button" name="b1" value="Button 1"/>
10
- </div>
11
-
12
- </body>
13
- </html>
@@ -1,12 +0,0 @@
1
- <html>
2
- <head>
3
- <meta http-equiv="Content-type" content="text/html; charset=utf-8">
4
- <title>emphasis</title>
5
- </head>
6
-
7
- <body id="emphasis" onload="">
8
- <em id="em-one" class="em-class-one" title="one">one text</em>
9
- <em id="em-two">two text</em>
10
- <em class="em-class-two"></em>
11
- </body>
12
- </html>
@@ -1,667 +0,0 @@
1
-
2
-
3
- <html>
4
- <head>
5
- <title>Entertainment.com</title>
6
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
7
-
8
-
9
-
10
-
11
- <!-- fuseaction to shopcart step mapping -->
12
-
13
-
14
-
15
- <meta name="WT.si_n" content="SCVisitorV2">
16
- <meta name="WT.si_p" content="billing">
17
-
18
-
19
- <!-- if not in reg module exit -->
20
-
21
-
22
- <meta name="WT.cg_n" content="shopcart">
23
- <meta name="WT.cg_s" content="viewcart">
24
- <meta name="WT.ti" content="dsp_viewcart.cfm">
25
-
26
-
27
-
28
-
29
- <link rel="stylesheet" href="/consumer_site_styles.css" type="text/css" />
30
-
31
- <script language="JavaScript">
32
- function careers_popup() {
33
- Win = window.open("http://career.pereless.com/index.cfm?CID=75018&open=Employment&top=info&menuitem=","thewindow","toolbar=no,width=800,height=550,status=no,scrollbars=yes,resize=yes,menubar=no");
34
- Win.focus();
35
- Win.moveTo(250,250);
36
- }
37
- </script>
38
-
39
- </head>
40
- <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
41
-
42
-
43
- <MAP Name="HeaderMap">
44
- <AREA
45
- Shape="rect"
46
- Coords="5,5,200,60"
47
- Href="http://www.entertainment.com/">
48
- </MAP>
49
-
50
- <table cellpadding="0" cellspacing="0" width="760">
51
- <tr>
52
- <td><img src="https://media.entertainment.com/images/06/shopcart/ShopCart_MemNotIn_2of5.gif" usemap="#HeaderMap"></td>
53
- </tr>
54
- </table>
55
-
56
-
57
-
58
- <table border="0" cellpadding="0" cellspacing="0" width="760">
59
- <tr>
60
- <td valign="top">
61
-
62
-
63
-
64
-
65
-
66
- <form action="index.cfm" method="post" name="shipaddress">
67
-
68
-
69
- <input type="hidden" name="fuseaction" value="billing">
70
-
71
-
72
- <input type="hidden" name="postaction" value="billing">
73
-
74
-
75
-
76
- <input type="hidden" name="module" value="shopcart">
77
-
78
-
79
- <br>
80
- <table width="517" border="0" align="center" cellpadding="0" cellspacing="0">
81
- <tr>
82
- <td class="bg18"><img src="../images/corner_grey_tl.gif" width="13" height="13"></td>
83
- <td class="bg18"><img src="../images/spacer.gif" width="1" height="1"></td>
84
- <td class="bg18"><img src="../images/corner_grey_tr.gif" width="13" height="13"></td>
85
- </tr>
86
- <tr>
87
- <td class="bg18"><img src="../images/spacer.gif" width="1" height="1"></td>
88
- <td class="bg18">
89
-
90
-
91
-
92
- <!-- main body start -->
93
- <table width="491" border="0" cellspacing="0" cellpadding="0">
94
- <tr>
95
- <td colspan="2"><div class="txt6Bold">Billing Information<br><img src="../images/spacer.gif" width="1" height="2"></div></td>
96
- </tr>
97
- <!-- ********* dk grey line **************-->
98
- <tr>
99
- <td width="491" colspan="2" class="bg17"><img src="../images/spacer.gif" width="1" height="1"></td>
100
- </tr>
101
- <tr><td colspan="2">
102
- <!-- ---------Billing information--------- -->
103
- <table width="491" border="0" cellpadding="0" cellspacing="0">
104
- <tr>
105
- <td colspan="3" class="bg18"><img src="../images/spacer.gif" width="1" height="5"></td>
106
- </tr>
107
-
108
- <tr>
109
- <td width="215" align="right">*First Name:</td>
110
- <td width="5"><img src="../images/spacer.gif" width="5" height="2"></td>
111
- <td width="271"><input type="text" name="firstname" value="" size="22"></td>
112
- </tr>
113
- <tr>
114
- <td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
115
- </tr>
116
- <tr>
117
- <td align="right">*Last Name:</td>
118
- <td>&nbsp;</td>
119
- <td><input type="text" name="lastname" value="" size="22"></td>
120
- </tr>
121
-
122
- <tr>
123
- <td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
124
- </tr>
125
- <tr>
126
- <td align="right">*Phone:</td>
127
- <td>&nbsp;</td>
128
- <td><input type="text" name="dayphone" value="" size="18"></td>
129
- </tr>
130
- <tr>
131
- <td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
132
- </tr>
133
- <tr>
134
- <td align="right">*Street Address 1:</td>
135
- <td>&nbsp;</td>
136
- <td><input type="text" name="address" value="" size="22"></td>
137
- </tr>
138
- <tr>
139
- <td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
140
- </tr>
141
- <tr>
142
- <td align="right">Street Address 2:</td>
143
- <td>&nbsp;</td>
144
- <td><input type="text" name="address2" value="" size="22"></td>
145
- </tr>
146
- <tr>
147
- <td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
148
- </tr>
149
- <tr>
150
- <td align="right">*City:</td>
151
- <td>&nbsp;</td>
152
- <td><input type="text" name="city" value="" size="22"></td>
153
- </tr>
154
- <tr>
155
- <td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
156
- </tr>
157
- <tr>
158
- <td align="right">*State/Province:</td>
159
- <td>&nbsp;</td>
160
- <td><input type="text" size="4" maxlength="2" name="state" VALUE=""></td>
161
- </tr>
162
- <tr>
163
- <td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
164
- </tr>
165
- <tr>
166
- <td align="right">*Country:</td>
167
- <td>&nbsp;</td>
168
- <td>
169
- <SELECT NAME="country">
170
- <OPTION VALUE="999COU00000001">United States of America</OPTION>
171
-
172
- <OPTION VALUE="999COU00000067"
173
- >Andorra
174
-
175
- <OPTION VALUE="999COU00000011"
176
- >Anguilla
177
-
178
- <OPTION VALUE="999COU00000012"
179
- >Antigua/Barbuda
180
-
181
- <OPTION VALUE="999COU00000058"
182
- >Argentina
183
-
184
- <OPTION VALUE="999COU00000118"
185
- >Armenia
186
-
187
- <OPTION VALUE="999COU00000013"
188
- >Aruba
189
-
190
- <OPTION VALUE="999COU00000004"
191
- >Australia
192
-
193
- <OPTION VALUE="999COU00000068"
194
- >Austria
195
-
196
- <OPTION VALUE="999COU00000009"
197
- >Bahamas
198
-
199
- <OPTION VALUE="999COU00000032"
200
- >Bahamas
201
-
202
- <OPTION VALUE="999COU00000095"
203
- >Bahrain
204
-
205
- <OPTION VALUE="999COU00000014"
206
- >Barbados
207
-
208
- <OPTION VALUE="999COU00000069"
209
- >Belarus
210
-
211
- <OPTION VALUE="999COU00000070"
212
- >Belgium
213
-
214
- <OPTION VALUE="999COU00000055"
215
- >Belize
216
-
217
- <OPTION VALUE="999COU00000036"
218
- >Bermuda
219
-
220
- <OPTION VALUE="999COU00000037"
221
- >Botswana
222
-
223
- <OPTION VALUE="999COU00000059"
224
- >Brazil
225
-
226
- <OPTION VALUE="999COU00000015"
227
- >British Virgin Islands
228
-
229
- <OPTION VALUE="999COU00000071"
230
- >Bulgaria
231
-
232
- <OPTION VALUE="999COU00000065"
233
- >Burma/Myanmar
234
-
235
- <OPTION VALUE="999COU00000002"
236
- >Canada
237
-
238
- <OPTION VALUE="999COU00000016"
239
- >Cayman Islands
240
-
241
- <OPTION VALUE="999COU00000060"
242
- >Chile
243
-
244
- <OPTION VALUE="999COU00000114"
245
- >China
246
-
247
- <OPTION VALUE="999COU00000061"
248
- >Colombia
249
-
250
- <OPTION VALUE="999COU00000056"
251
- >Costa Rica
252
-
253
- <OPTION VALUE="999COU00000017"
254
- >Cuba
255
-
256
- <OPTION VALUE="999COU00000096"
257
- >Cyprus
258
-
259
- <OPTION VALUE="999COU00000072"
260
- >Czech Republic
261
-
262
- <OPTION VALUE="999COU00000073"
263
- >Denmark
264
-
265
- <OPTION VALUE="999COU00000018"
266
- >Dominica
267
-
268
- <OPTION VALUE="999COU00000019"
269
- >Dominican Republic
270
-
271
- <OPTION VALUE="999COU00000062"
272
- >Ecuador
273
-
274
- <OPTION VALUE="999COU00000097"
275
- >Egypt
276
-
277
- <OPTION VALUE="999COU00000057"
278
- >El Salvador
279
-
280
- <OPTION VALUE="999COU00000005"
281
- >England
282
-
283
- <OPTION VALUE="999COU00000074"
284
- >Finland
285
-
286
- <OPTION VALUE="999COU00000007"
287
- >France
288
-
289
- <OPTION VALUE="999COU00000075"
290
- >France
291
-
292
- <OPTION VALUE="999COU00000076"
293
- >Germany
294
-
295
- <OPTION VALUE="999COU00000077"
296
- >Greece
297
-
298
- <OPTION VALUE="999COU00000020"
299
- >Grenada
300
-
301
- <OPTION VALUE="999COU00000021"
302
- >Guadeloupe
303
-
304
- <OPTION VALUE="999COU00000110"
305
- >Guam
306
-
307
- <OPTION VALUE="999COU00000022"
308
- >Haiti
309
-
310
- <OPTION VALUE="999COU00000008"
311
- >Holland
312
-
313
- <OPTION VALUE="999COU00000106"
314
- >Honduras
315
-
316
- <OPTION VALUE="999COU00000111"
317
- >Hong Kong
318
-
319
- <OPTION VALUE="999COU00000078"
320
- >Hungary
321
-
322
- <OPTION VALUE="999COU00000115"
323
- >Iceland
324
-
325
- <OPTION VALUE="999COU00000044"
326
- >India
327
-
328
- <OPTION VALUE="999COU00000045"
329
- >Indonesia
330
-
331
- <OPTION VALUE="999COU00000079"
332
- >Ireland
333
-
334
- <OPTION VALUE="999COU00000098"
335
- >Israel
336
-
337
- <OPTION VALUE="999COU00000080"
338
- >Italy
339
-
340
- <OPTION VALUE="999COU00000023"
341
- >Jamaica
342
-
343
- <OPTION VALUE="999COU00000046"
344
- >Japan
345
-
346
- <OPTION VALUE="999COU00000104"
347
- >Korea
348
-
349
- <OPTION VALUE="999COU00000109"
350
- >Lebanon
351
-
352
- <OPTION VALUE="999COU00000081"
353
- >Luxembourg
354
-
355
- <OPTION VALUE="999COU00000047"
356
- >Malaysia
357
-
358
- <OPTION VALUE="999COU00000082"
359
- >Malta
360
-
361
- <OPTION VALUE="999COU00000024"
362
- >Martinique
363
-
364
- <OPTION VALUE="999COU00000003"
365
- >Mexico
366
-
367
- <OPTION VALUE="999COU00000025"
368
- >Montserrat
369
-
370
- <OPTION VALUE="999COU00000038"
371
- >Morocco
372
-
373
- <OPTION VALUE="999COU00000039"
374
- >Mozambique
375
-
376
- <OPTION VALUE="999COU00000040"
377
- >Namibia
378
-
379
- <OPTION VALUE="999COU00000026"
380
- >Navassa Island
381
-
382
- <OPTION VALUE="999COU00000048"
383
- >Nepal
384
-
385
- <OPTION VALUE="999COU00000083"
386
- >Netherlands
387
-
388
- <OPTION VALUE="999COU00000027"
389
- >Netherlands Antilles
390
-
391
- <OPTION VALUE="999COU00000066"
392
- >New Zealand
393
-
394
- <OPTION VALUE="999COU00000100"
395
- >Northern Ireland
396
-
397
- <OPTION VALUE="999COU00000084"
398
- >Norway
399
-
400
- <OPTION VALUE="999COU00000119"
401
- >Pakistan
402
-
403
- <OPTION VALUE="999COU00000049"
404
- >People's Republic of China
405
-
406
- <OPTION VALUE="999COU00000063"
407
- >Peru
408
-
409
- <OPTION VALUE="999COU00000050"
410
- >Philippines
411
-
412
- <OPTION VALUE="999COU00000085"
413
- >Poland
414
-
415
- <OPTION VALUE="999COU00000086"
416
- >Portugal
417
-
418
- <OPTION VALUE="999COU00000028"
419
- >Puerto Rico
420
-
421
- <OPTION VALUE="999COU00000107"
422
- >Qatar
423
-
424
- <OPTION VALUE="999COU00000051"
425
- >Republic of Maldives
426
-
427
- <OPTION VALUE="999COU00000087"
428
- >Romania
429
-
430
- <OPTION VALUE="999COU00000088"
431
- >Russia
432
-
433
- <OPTION VALUE="999COU00000029"
434
- >Saint Kitts & Nevis
435
-
436
- <OPTION VALUE="999COU00000030"
437
- >Saint Lucia
438
-
439
- <OPTION VALUE="999COU00000113"
440
- >Saint Maarten/St. Martin
441
-
442
- <OPTION VALUE="999COU00000031"
443
- >Saint Vincent & Grenadines
444
-
445
- <OPTION VALUE="999COU00000103"
446
- >Saipan
447
-
448
- <OPTION VALUE="999COU00000117"
449
- >Saudi Arabia
450
-
451
- <OPTION VALUE="999COU00000101"
452
- >Scotland
453
-
454
- <OPTION VALUE="999COU00000052"
455
- >Singapore
456
-
457
- <OPTION VALUE="999COU00000089"
458
- >Slovakia
459
-
460
- <OPTION VALUE="999COU00000090"
461
- >Slovenia
462
-
463
- <OPTION VALUE="999COU00000041"
464
- >South Africa
465
-
466
- <OPTION VALUE="999COU00000108"
467
- >South Korea
468
-
469
- <OPTION VALUE="999COU00000091"
470
- >Spain
471
-
472
- <OPTION VALUE="999COU00000053"
473
- >Sri Lanka
474
-
475
- <OPTION VALUE="999COU00000092"
476
- >Sweden
477
-
478
- <OPTION VALUE="999COU00000093"
479
- >Switzerland
480
-
481
- <OPTION VALUE="999COU00000112"
482
- >Taiwan
483
-
484
- <OPTION VALUE="999COU00000042"
485
- >Tanzania
486
-
487
- <OPTION VALUE="999COU00000054"
488
- >Thailand
489
-
490
- <OPTION VALUE="999COU00000116"
491
- >Thailand
492
-
493
- <OPTION VALUE="999COU00000033"
494
- >Trinidad & Tobago
495
-
496
- <OPTION VALUE="999COU00000094"
497
- >Turkey
498
-
499
- <OPTION VALUE="999COU00000034"
500
- >Turks & Caicos Islands
501
-
502
- <OPTION VALUE="999COU00000099"
503
- >United Arab Emirates
504
-
505
- <OPTION VALUE="999COU00000006"
506
- >United Kingdom
507
-
508
- <OPTION VALUE="999COU00000001"
509
- >United States of America
510
-
511
- <OPTION VALUE="999COU00000064"
512
- >Venezuela
513
-
514
- <OPTION VALUE="999COU00000105"
515
- >Vietnam
516
-
517
- <OPTION VALUE="999COU00000035"
518
- >Virgin Islands
519
-
520
- <OPTION VALUE="999COU00000102"
521
- >Wales
522
-
523
- <OPTION VALUE="999COU00000010"
524
- >West Indies
525
-
526
- <OPTION VALUE="999COU00000043"
527
- >Zimbabwe
528
-
529
- </SELECT>
530
- </td>
531
- </tr>
532
- <tr>
533
- <td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
534
- </tr>
535
- <tr>
536
- <td align="right">*Zip/Postal Code:</td>
537
- <td>&nbsp;</td>
538
- <td><input type="text" name="zip" value="" size="16"></td>
539
- </tr>
540
-
541
- <tr>
542
- <td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
543
- </tr>
544
- <tr>
545
- <td align="right">*E-mail Address:</td>
546
- <td>&nbsp;</td>
547
- <td><input type="text" name="email" value="" size="16"></td>
548
- </tr>
549
-
550
- <tr>
551
- <td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
552
- </tr>
553
- <tr>
554
- <td align="right">*Confirm E-mail Address:</td>
555
- <td>&nbsp;</td>
556
- <td><input type="text" name="confirmemail" value="" size="16"></td>
557
- </tr>
558
-
559
- <tr>
560
- <td align="right">&nbsp;</td>
561
- <td>&nbsp;</td>
562
- <td>&nbsp;</td>
563
- </tr>
564
-
565
- <tr>
566
- <td colspan="3" class="bg17"><img src="../images/spacer.gif" width="1" height="1"></td>
567
- </tr>
568
- <tr>
569
- <td colspan="3">&nbsp;</td>
570
- </tr>
571
- <tr>
572
- <td colspan="3">
573
- <table align="center">
574
- <tr>
575
- <td align="right" valign="top"><span class="txt4Bold">Where do you want to <br>
576
- ship your order?</span></td>
577
- <td>&nbsp;</td>
578
- <td>
579
- <table border="0" cellspacing="0" cellpadding="0">
580
- <tr>
581
- <td><input type="radio" name="shipto" value="1" checked></td>
582
- <td>&nbsp;Billing Address</td>
583
- </tr>
584
- <tr>
585
- <td><input type="radio" name="shipto" value="2" ></td>
586
- <td>&nbsp;Different Address</td>
587
- </tr>
588
-
589
- </table>
590
- </td>
591
- </tr>
592
- </table>
593
- </td>
594
- </tr>
595
- <tr>
596
- <td colspan="3" class="bg18">
597
-
598
- </td>
599
- </tr>
600
-
601
- <tr>
602
- <td colspan="3" class="bg18"><img src="../images/spacer.gif" width="1" height="10"></td>
603
- </tr>
604
- <tr align="right">
605
- <td colspan="3" class="bg18"><input type="Image" src="../images/button_continue.gif" width="122" height="29"></td>
606
- </tr>
607
- <tr>
608
- <td>&nbsp;</td>
609
- <td>&nbsp;</td>
610
- <td>&nbsp;</td>
611
- </tr>
612
- <tr>
613
- <td colspan="3" valign="top"><span class="txt2">*Required Field. Customer order information is processed on a secure server.<br>
614
- See <a href="http://www.entertainment.com/jsp/consumer/help/safety_privacy_legal/publications_privacy_policy.jsp" class="link2" target="_blank">Privacy Policy</a>.</span></td>
615
- </tr>
616
-
617
- </table>
618
- </td></tr>
619
- </table>
620
- <!-- main body end -->
621
- </td>
622
- <td class="bg18"><img src="../images/spacer.gif" width="1" height="1"></td>
623
- </tr>
624
- <tr>
625
- <td class="bg18"><img src="../images/corner_grey_bl.gif" width="13" height="13"></td>
626
- <td class="bg18"><img src="../images/spacer.gif" width="1" height="1"></td>
627
- <td class="bg18"><img src="../images/corner_grey_br.gif" width="13" height="13"></td>
628
- </tr>
629
- <tr>
630
- <td colspan="3">
631
- <br>
632
-
633
- <table width="100%">
634
- <tr>
635
- <td align="right" class="txt2" width="80%">
636
- All customer information is processed on a secure server.<br>
637
- For more information, read our <a href="http://www.entertainment.com/jsp/consumer/help/safety_privacy_legal/publications_privacy_policy.jsp"><span class=txt2>Privacy Policy</span></a>.
638
- </td>
639
- <td width="20%">
640
-
641
-
642
- </td>
643
- </tr>
644
- </table>
645
-
646
- </td>
647
- </tr>
648
- </table>
649
-
650
-
651
-
652
-
653
- </form>
654
-
655
-
656
-
657
-
658
- </table>
659
-
660
-
661
-
662
-
663
-
664
-
665
-
666
- </body>
667
- </html>