Mercurial > hg > isophonics-drupal-site
comparison core/tests/Drupal/FunctionalJavascriptTests/WebDriverWebAssert.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children |
comparison
equal
deleted
inserted
replaced
13:5fb285c0d0e3 | 14:1fec387a4317 |
---|---|
53 public function responseHeaderNotEquals($name, $value) { | 53 public function responseHeaderNotEquals($name, $value) { |
54 @trigger_error('Support for responseHeaderNotEquals is to be dropped from Javascript tests. See https://www.drupal.org/node/2857562.'); | 54 @trigger_error('Support for responseHeaderNotEquals is to be dropped from Javascript tests. See https://www.drupal.org/node/2857562.'); |
55 parent::responseHeaderNotEquals($name, $value); | 55 parent::responseHeaderNotEquals($name, $value); |
56 } | 56 } |
57 | 57 |
58 /** | |
59 * The use of responseHeaderContains() is not available. | |
60 * | |
61 * @param string $name | |
62 * The name of the header. | |
63 * @param string $value | |
64 * The value to check the header against. | |
65 */ | |
66 public function responseHeaderContains($name, $value) { | |
67 @trigger_error('Support for responseHeaderContains is to be dropped from Javascript tests. See https://www.drupal.org/node/2857562.'); | |
68 parent::responseHeaderContains($name, $value); | |
69 } | |
70 | |
71 /** | |
72 * The use of responseHeaderNotContains() is not available. | |
73 * | |
74 * @param string $name | |
75 * The name of the header. | |
76 * @param string $value | |
77 * The value to check the header against. | |
78 */ | |
79 public function responseHeaderNotContains($name, $value) { | |
80 @trigger_error('Support for responseHeaderNotContains is to be dropped from Javascript tests. See https://www.drupal.org/node/2857562.'); | |
81 parent::responseHeaderNotContains($name, $value); | |
82 } | |
83 | |
84 /** | |
85 * The use of responseHeaderMatches() is not available. | |
86 * | |
87 * @param string $name | |
88 * The name of the header. | |
89 * @param string $regex | |
90 * The value to check the header against. | |
91 */ | |
92 public function responseHeaderMatches($name, $regex) { | |
93 @trigger_error('Support for responseHeaderMatches is to be dropped from Javascript tests. See https://www.drupal.org/node/2857562.'); | |
94 parent::responseHeaderMatches($name, $regex); | |
95 } | |
96 | |
97 /** | |
98 * The use of responseHeaderNotMatches() is not available. | |
99 * | |
100 * @param string $name | |
101 * The name of the header. | |
102 * @param string $regex | |
103 * The value to check the header against. | |
104 */ | |
105 public function responseHeaderNotMatches($name, $regex) { | |
106 @trigger_error('Support for responseHeaderNotMatches is to be dropped from Javascript tests. See https://www.drupal.org/node/2857562.'); | |
107 parent::responseHeaderNotMatches($name, $regex); | |
108 } | |
109 | |
58 } | 110 } |