Skip to content

Commit

Permalink
Make the browser.py documentation more truthful
Browse files Browse the repository at this point in the history
Not very useful, though...
  • Loading branch information
foolip committed Feb 23, 2018
1 parent 96bff47 commit 4fda935
Showing 1 changed file with 8 additions and 20 deletions.
28 changes: 8 additions & 20 deletions tools/wpt/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def version(self, root):
class Chrome(Browser):
"""Chrome-specific interface.
Includes installation, webdriver installation, and wptrunner setup methods.
Includes webdriver installation, and wptrunner setup methods.
"""

product = "chrome"
Expand Down Expand Up @@ -284,9 +284,9 @@ def prepare_environment(self):


class ChromeAndroid(Browser):
"""Chrome-specific interface for android.
"""Chrome-specific interface for Android.
Includes installation, webdriver installation, and wptrunner setup methods.
Includes webdriver installation.
"""

product = "chrome_android"
Expand All @@ -309,7 +309,7 @@ def version(self, root):
class Opera(Browser):
"""Opera-specific interface.
Includes installation, webdriver installation, and wptrunner setup methods.
Includes webdriver installation, and wptrunner setup methods.
"""

product = "opera"
Expand Down Expand Up @@ -386,10 +386,7 @@ def prepare_environment(self):


class Edge(Browser):
"""Edge-specific interface.
Includes installation, webdriver installation, and wptrunner setup methods.
"""
"""Edge-specific interface."""

product = "edge"
requirements = "requirements_edge.txt"
Expand All @@ -409,10 +406,7 @@ def version(self):


class InternetExplorer(Browser):
"""Internet Explorer-specific interface.
Includes installation, webdriver installation, and wptrunner setup methods.
"""
"""Internet Explorer-specific interface."""

product = "ie"
requirements = "requirements_ie.txt"
Expand All @@ -432,10 +426,7 @@ def version(self):


class Servo(Browser):
"""Servo-specific interface.
Includes installation, webdriver installation, and wptrunner setup methods.
"""
"""Servo-specific interface."""

product = "servo"
requirements = "requirements_servo.txt"
Expand All @@ -457,10 +448,7 @@ def version(self, root):


class Sauce(Browser):
"""Sauce-specific interface.
Includes installation, webdriver installation, and wptrunner setup methods.
"""
"""Sauce-specific interface."""

product = "sauce"
requirements = "requirements_sauce.txt"
Expand Down

0 comments on commit 4fda935

Please sign in to comment.