Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(739)

Side by Side Diff: Tools/Scripts/webkitpy/layout_tests/port/base.py

Issue 222153002: Disallow connecting an insecure WebSocket from a secure page. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (C) 2010 Google Inc. All rights reserved. 1 # Copyright (C) 2010 Google Inc. All rights reserved.
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
7 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
(...skipping 1574 matching lines...) Expand 10 before | Expand all | Expand 10 after
1585 ['--enable-fast-text-autosizing']), 1585 ['--enable-fast-text-autosizing']),
1586 VirtualTestSuite('serviceworker', 1586 VirtualTestSuite('serviceworker',
1587 'http/tests/serviceworker', 1587 'http/tests/serviceworker',
1588 ['--enable-service-worker']), 1588 ['--enable-service-worker']),
1589 VirtualTestSuite('targetedstylerecalc', 1589 VirtualTestSuite('targetedstylerecalc',
1590 'fast/css/invalidation', 1590 'fast/css/invalidation',
1591 ['--enable-targeted-style-recalc']), 1591 ['--enable-targeted-style-recalc']),
1592 VirtualTestSuite('stable', 1592 VirtualTestSuite('stable',
1593 'http/tests/websocket', 1593 'http/tests/websocket',
1594 ['--stable-release-mode']), 1594 ['--stable-release-mode']),
1595 VirtualTestSuite('stable',
1596 'http/tests/security/mixedContent/websocket',
1597 ['--stable-release-mode']),
1595 VirtualTestSuite('linux-subpixel', 1598 VirtualTestSuite('linux-subpixel',
1596 'platform/linux/fast/text/subpixel', 1599 'platform/linux/fast/text/subpixel',
1597 ['--enable-webkit-text-subpixel-positioning']), 1600 ['--enable-webkit-text-subpixel-positioning']),
1598 VirtualTestSuite('windows-directwrite', 1601 VirtualTestSuite('windows-directwrite',
1599 'fast/text', 1602 'fast/text',
1600 ['--enable-direct-write', '--enable-font-smoothing' ]), 1603 ['--enable-direct-write', '--enable-font-smoothing' ]),
1601 ] 1604 ]
1602 1605
1603 @memoized 1606 @memoized
1604 def populated_virtual_test_suites(self): 1607 def populated_virtual_test_suites(self):
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
1758 if name.find('/') != -1: 1761 if name.find('/') != -1:
1759 _log.error("Virtual test suites names cannot contain /'s: %s" % name) 1762 _log.error("Virtual test suites names cannot contain /'s: %s" % name)
1760 return 1763 return
1761 self.name = 'virtual/' + name + '/' + base 1764 self.name = 'virtual/' + name + '/' + base
1762 self.base = base 1765 self.base = base
1763 self.args = args 1766 self.args = args
1764 self.tests = tests or set() 1767 self.tests = tests or set()
1765 1768
1766 def __repr__(self): 1769 def __repr__(self):
1767 return "VirtualTestSuite('%s', '%s', %s)" % (self.name, self.base, self. args) 1770 return "VirtualTestSuite('%s', '%s', %s)" % (self.name, self.base, self. args)
OLDNEW
« no previous file with comments | « Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698