~noskcaj/ubuntu/vivid/webtest/merge2

« back to all changes in this revision

Viewing changes to tests/html/form_unicode_inputs.html

  • Committer: Package Import Robot
  • Author(s): Piotr Ożarowski, Jakub Wilk, Piotr Ożarowski
  • Date: 2013-10-02 19:37:14 UTC
  • mfrom: (1.2.1) (14.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20131002193714-t0na13dhqrskvvff
Tags: 2.0.9-1
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.

[ Piotr Ożarowski ]
* New upstream release
  - bump minimum required Python version to 2.6
  - add python-six, python-waitress and python-bs4 to Depends
  - remove python-pastescript from Depends
  - remove python-simplejson and python-beautifulsoup from Recommends
  - add python-pyquery to Recommends
* Update debian/watch file to check for zip files
* Standards-Version bumped to 3.9.4 (no changes needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html>
 
2
    <head><title>form page</title></head>
 
3
    <body>
 
4
        <form method="POST" id="text_input_form">
 
5
            <input name="foo" type="text" value="Хармс">
 
6
            <input name="button" type="submit" value="Сохранить">
 
7
        </form>
 
8
        <form method="POST" id="radio_input_form">
 
9
            <input name="foo" type="radio" value="Хармс">
 
10
            <input name="foo" type="radio" value="Блок" checked>
 
11
            <input name="button" type="submit" value="Сохранить">
 
12
        </form>
 
13
        <form method="POST" id="checkbox_input_form">
 
14
            <input name="foo" type="checkbox" value="Хармс" checked>
 
15
            <input name="button" type="submit" value="Ура">
 
16
        </form>
 
17
        <form method="POST" id="password_input_form">
 
18
            <input name="foo" type="password" value="Хармс">
 
19
            <input name="button" type="submit" value="Ура">
 
20
        </form>
 
21
    </body>
 
22
</html>