summaryrefslogtreecommitdiffstats
path: root/testing/marionette/harness/marionette_harness/tests/unit/test_title.py
blob: 1a81291919061e71f0f6c06f6722d69ed4efb54f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

from six.moves.urllib.parse import quote

from marionette_harness import MarionetteTestCase


def inline(doc):
    return "data:text/html;charset=utf-8,{}".format(quote(doc))


class TestTitle(MarionetteTestCase):
    def test_basic(self):
        self.marionette.navigate(inline("<title>foo</title>"))
        self.assertEqual(self.marionette.title, "foo")