This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="layout--onecol layout-container py-section"> | |
| <div class="container-fluid"> | |
| <div class="row"> | |
| <div class="col-12 layout__region--content"> | |
| <div class="tab "> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ConfigurationFile(): | |
| def __init__(self, config1, config2): | |
| self._config1 = config1 | |
| self._config2 = config2 | |
| def output_file(self): | |
| print( | |
| "configuration-group={\n" | |
| " config1=\"" + self._config1 + "\"\n" | |
| " config2=\"" + self._config2 + "\"\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ul> | |
| <li>Item 1</li> | |
| <li>Item 2</li> | |
| <li>Item 3</li> | |
| <li>Item 4</li> | |
| <li>Item 5</li> | |
| <li>Item 6</li> | |
| </ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <!-- | |
| test-scenario-a.html — Test page implementing scenario a. | |
| Copyright 2014 Samuel Sirois (sds) <samuel@sirois.info> | |
| This file is part of a11yexperiments.com test 0001. | |
| a11yexperiments.com test 0001 is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU General Public License as published by |