Skip to content
Snippets Groups Projects
Commit d28d65ba authored by catch's avatar catch
Browse files

Issue #1229442 by bleen18, amateescu, chrispomeroy, aspilicious: Convert poll...

Issue #1229442 by bleen18, amateescu, chrispomeroy, aspilicious: Convert poll tpls and markup to HTML5.
parent ec59f02c
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -17,7 +17,7 @@
* @see template_preprocess_poll_results()
*/
?>
<article class="poll">
<div class="poll">
<?php if ($block): ?>
<h3 class="poll-title"><?php print $title; ?></h3>
<?php endif; ?>
......@@ -30,7 +30,7 @@
<?php if (!empty($cancel_form)): ?>
<?php print $cancel_form; ?>
<?php endif; ?>
</article>
</div>
<?php if ($block): ?>
<div class="links"><?php print $links; ?></div>
<?php endif; ?>
......@@ -14,7 +14,7 @@
* @see template_preprocess_poll_vote()
*/
?>
<article class="poll">
<div class="poll">
<div class="vote-form">
<?php if ($block): ?>
......@@ -26,4 +26,4 @@
</div>
<?php // This is the 'rest' of the form, in case items have been added. ?>
<?php print $rest ?>
</article>
</div>
......@@ -233,10 +233,10 @@ class PollCreateTestCase extends PollWebTestCase {
$this->clickLink($title);
$this->assertText($new_option, 'New option found.');
$option = $this->xpath('//article[@id="node-1"]//article[@class="poll"]//dt[@class="choice-title"]');
$option = $this->xpath('//article[@id="node-1"]//div[@class="poll"]//dt[@class="choice-title"]');
$this->assertEqual(end($option), $new_option, 'Last item is equal to new option.');
$votes = $this->xpath('//article[@id="node-1"]//article[@class="poll"]//div[@class="percent"]');
$votes = $this->xpath('//article[@id="node-1"]//div[@class="poll"]//div[@class="percent"]');
$this->assertTrue(strpos(end($votes), $vote_count) > 0, t("Votes saved."));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment