removes some obselete tests
authorThomas Walker Lynch <eknp9n@reasoningtechnology.com>
Wed, 5 Aug 2026 13:21:20 +0000 (13:21 +0000)
committerThomas Walker Lynch <eknp9n@reasoningtechnology.com>
Wed, 5 Aug 2026 13:21:20 +0000 (13:21 +0000)
tester/authored/Counter/test_cdot.html [deleted file]
tester/authored/Counter/test_mdot.html [deleted file]
tester/authored/Counter/test_period.html [deleted file]
tester/authored/Counter/test_underscore.html [deleted file]

diff --git a/tester/authored/Counter/test_cdot.html b/tester/authored/Counter/test_cdot.html
deleted file mode 100644 (file)
index c9ae387..0000000
+++ /dev/null
@@ -1,103 +0,0 @@
-<!--
-    the variable names like:
-
-  --RT·content-main
-
-    are working with a cdot (multiply) not with an mdot (typography), exactly
-    backwards from what was expected
-
--->
-
-
-<!DOCTYPE html>
-<html lang="en">
-<head>
-  <meta charset="UTF-8">
-  <title>Comprehensive RT· Namespace Test</title>
-  <style>
-    /* 1. Testing CSS Variables */
-    :root {
-      --RT·content-main: #e0e0e0;
-      --RT·bg-color: #1a1a1a;
-      --RT·border-style: 1px solid #444;
-    }
-
-    body {
-      background-color: var(--RT·bg-color);
-      color: var(--RT·content-main);
-      font-family: sans-serif;
-      padding: 20px;
-    }
-
-    /* 2. Testing Custom Tag Selectors */
-    RT·chapter {
-      display: block;
-      margin-bottom: 20px;
-      padding: 10px;
-      border: var(--RT·border-style);
-    }
-
-    RT·page-break {
-      display: block;
-      height: 4px;
-      background-color: #555;
-      margin: 20px 0;
-    }
-
-    /* 3. Testing CSS Class Selectors */
-    .RT·highlight {
-      color: #ffd700;
-      font-weight: bold;
-    }
-  </style>
-  <script>
-    window.RT = window.RT || {};
-
-    window.RT.processChapters = function() {
-      const debug = window.RT.debug || { log: function(){} };
-
-      // 4. Testing JS Query Selectors
-      document.querySelectorAll('RT·chapter').forEach((el, index) => {
-        if (debug.log) debug.log('chapter', `Processing chapter ${index + 1}`);
-
-        // 5. Testing Element Creation
-        const brk = document.createElement('RT·page-break');
-        const h1 = document.createElement('h1');
-
-        h1.innerHTML = el.innerHTML;
-
-        if (el.className) {
-          h1.className = el.className;
-        }
-        
-        // 6. Testing ClassList Manipulation
-        h1.classList.add('RT·processed-chapter');
-
-        Array.from(el.attributes).forEach((attr) => {
-          if (attr.name !== 'class') {
-            h1.setAttribute(attr.name, attr.value);
-          }
-        });
-
-        el.parentNode.insertBefore(brk, el);
-        el.replaceWith(h1);
-      });
-
-      // 7. Testing JS Variable Identifiers (Unicode support)
-      const RT·status = "DOM fully processed using center dot (multiply dot)  namespace.";
-      console.log(RT·status);
-    };
-
-    document.addEventListener("DOMContentLoaded", window.RT.processChapters);
-  </script>
-</head>
-<body>
-
-  <p class="RT·highlight">Hello!</p>
-  
-  <RT·chapter class="RT·highlight">Chapter 1: The Setup</RT·chapter>
-  
-  <RT·chapter data-custom="valid">Chapter 2: The Execution</RT·chapter>
-
-</body>
-</html>
diff --git a/tester/authored/Counter/test_mdot.html b/tester/authored/Counter/test_mdot.html
deleted file mode 100644 (file)
index 62260bf..0000000
+++ /dev/null
@@ -1,92 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-  <meta charset="UTF-8">
-  <title>Comprehensive RT⋅ Namespace Test</title>
-  <style>
-    /* 1. Testing CSS Variables */
-    :root {
-      --RT⋅content-main: #e0e0e0;
-      --RT⋅bg-color: #1a1a1a;
-      --RT⋅border-style: 1px solid #444;
-    }
-
-    body {
-      background-color: var(--RT⋅bg-color);
-      color: var(--RT⋅content-main);
-      font-family: sans-serif;
-      padding: 20px;
-    }
-
-    /* 2. Testing Custom Tag Selectors */
-    RT⋅chapter {
-      display: block;
-      margin-bottom: 20px;
-      padding: 10px;
-      border: var(--RT⋅border-style);
-    }
-
-    RT⋅page-break {
-      display: block;
-      height: 4px;
-      background-color: #555;
-      margin: 20px 0;
-    }
-
-    /* 3. Testing CSS Class Selectors */
-    .RT⋅highlight {
-      color: #ffd700;
-      font-weight: bold;
-    }
-  </style>
-  <script>
-    window.RT = window.RT || {};
-
-    window.RT.processChapters = function() {
-      const debug = window.RT.debug || { log: function(){} };
-
-      // 4. Testing JS Query Selectors
-      document.querySelectorAll('RT⋅chapter').forEach((el, index) => {
-        if (debug.log) debug.log('chapter', `Processing chapter ${index + 1}`);
-
-        // 5. Testing Element Creation
-        const brk = document.createElement('RT⋅page-break');
-        const h1 = document.createElement('h1');
-
-        h1.innerHTML = el.innerHTML;
-
-        if (el.className) {
-          h1.className = el.className;
-        }
-        
-        // 6. Testing ClassList Manipulation
-        h1.classList.add('RT⋅processed-chapter');
-
-        Array.from(el.attributes).forEach((attr) => {
-          if (attr.name !== 'class') {
-            h1.setAttribute(attr.name, attr.value);
-          }
-        });
-
-        el.parentNode.insertBefore(brk, el);
-        el.replaceWith(h1);
-      });
-
-      // 7. Testing JS Variable Identifiers (Unicode support)
-      const RT⋅status = "DOM fully processed using middle dot (for typography) namespace.";
-      console.log(RT⋅status);
-    };
-
-    document.addEventListener("DOMContentLoaded", window.RT.processChapters);
-  </script>
-</head>
-<body>
-
-  <p class="RT⋅highlight">Hello!</p>
-  
-  <RT⋅chapter class="RT⋅highlight">Chapter 1: The Setup</RT⋅chapter>
-  
-  <RT⋅chapter data-custom="valid">Chapter 2: The Execution</RT⋅chapter>
-
-</body>
-</html>
diff --git a/tester/authored/Counter/test_period.html b/tester/authored/Counter/test_period.html
deleted file mode 100644 (file)
index 47a0612..0000000
+++ /dev/null
@@ -1,92 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-  <meta charset="UTF-8">
-  <title>Comprehensive RT. Namespace Test</title>
-  <style>
-    /* 1. Testing CSS Variables */
-    :root {
-      --RT.content-main: #e0e0e0;
-      --RT.bg-color: #1a1a1a;
-      --RT.border-style: 1px solid #444;
-    }
-
-    body {
-      background-color: var(--RT.bg-color);
-      color: var(--RT.content-main);
-      font-family: sans-serif;
-      padding: 20px;
-    }
-
-    /* 2. Testing Custom Tag Selectors */
-    RT.chapter {
-      display: block;
-      margin-bottom: 20px;
-      padding: 10px;
-      border: var(--RT.border-style);
-    }
-
-    RT.page-break {
-      display: block;
-      height: 4px;
-      background-color: #555;
-      margin: 20px 0;
-    }
-
-    /* 3. Testing CSS Class Selectors */
-    .RT.highlight {
-      color: #ffd700;
-      font-weight: bold;
-    }
-  </style>
-  <script>
-    window.RT = window.RT || {};
-
-    window.RT.processChapters = function() {
-      const debug = window.RT.debug || { log: function(){} };
-
-      // 4. Testing JS Query Selectors
-      document.querySelectorAll('RT.chapter').forEach((el, index) => {
-        if (debug.log) debug.log('chapter', `Processing chapter ${index + 1}`);
-
-        // 5. Testing Element Creation
-        const brk = document.createElement('RT.page-break');
-        const h1 = document.createElement('h1');
-
-        h1.innerHTML = el.innerHTML;
-
-        if (el.className) {
-          h1.className = el.className;
-        }
-        
-        // 6. Testing ClassList Manipulation
-        h1.classList.add('RT.processed-chapter');
-
-        Array.from(el.attributes).forEach((attr) => {
-          if (attr.name !== 'class') {
-            h1.setAttribute(attr.name, attr.value);
-          }
-        });
-
-        el.parentNode.insertBefore(brk, el);
-        el.replaceWith(h1);
-      });
-
-      // 7. Testing JS Variable Identifiers (Unicode support)
-      const RT.status = "DOM fully processed using center dot namespace.";
-      console.log(RT.status);
-    };
-
-    document.addEventListener("DOMContentLoaded", window.RT.processChapters);
-  </script>
-</head>
-<body>
-
-  <p class="RT.highlight">Hello!</p>
-  
-  <RT.chapter class="RT.highlight">Chapter 1: The Setup</RT.chapter>
-  
-  <RT.chapter data-custom="valid">Chapter 2: The Execution</RT.chapter>
-
-</body>
-</html>
diff --git a/tester/authored/Counter/test_underscore.html b/tester/authored/Counter/test_underscore.html
deleted file mode 100644 (file)
index 4c68e0f..0000000
+++ /dev/null
@@ -1,92 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-  <meta charset="UTF-8">
-  <title>Comprehensive RT_ Namespace Test</title>
-  <style>
-    /* 1. Testing CSS Variables */
-    :root {
-      --RT_content-main: #e0e0e0;
-      --RT_bg-color: #1a1a1a;
-      --RT_border-style: 1px solid #444;
-    }
-
-    body {
-      background-color: var(--RT_bg-color);
-      color: var(--RT_content-main);
-      font-family: sans-serif;
-      padding: 20px;
-    }
-
-    /* 2. Testing Custom Tag Selectors */
-    RT_chapter {
-      display: block;
-      margin-bottom: 20px;
-      padding: 10px;
-      border: var(--RT_border-style);
-    }
-
-    RT_page-break {
-      display: block;
-      height: 4px;
-      background-color: #555;
-      margin: 20px 0;
-    }
-
-    /* 3. Testing CSS Class Selectors */
-    .RT_highlight {
-      color: #ffd700;
-      font-weight: bold;
-    }
-  </style>
-  <script>
-    window.RT = window.RT || {};
-
-    window.RT.processChapters = function() {
-      const debug = window.RT.debug || { log: function(){} };
-
-      // 4. Testing JS Query Selectors
-      document.querySelectorAll('RT_chapter').forEach((el, index) => {
-        if (debug.log) debug.log('chapter', `Processing chapter ${index + 1}`);
-
-        // 5. Testing Element Creation
-        const brk = document.createElement('RT_page-break');
-        const h1 = document.createElement('h1');
-
-        h1.innerHTML = el.innerHTML;
-
-        if (el.className) {
-          h1.className = el.className;
-        }
-        
-        // 6. Testing ClassList Manipulation
-        h1.classList.add('RT_processed-chapter');
-
-        Array.from(el.attributes).forEach((attr) => {
-          if (attr.name !== 'class') {
-            h1.setAttribute(attr.name, attr.value);
-          }
-        });
-
-        el.parentNode.insertBefore(brk, el);
-        el.replaceWith(h1);
-      });
-
-      // 7. Testing JS Variable Identifiers (Unicode support)
-      const RT_status = "DOM fully processed using center dot namespace.";
-      console.log(RT_status);
-    };
-
-    document.addEventListener("DOMContentLoaded", window.RT.processChapters);
-  </script>
-</head>
-<body>
-
-  <p class="RT_highlight">Hello!</p>
-  
-  <RT_chapter class="RT_highlight">Chapter 1: The Setup</RT_chapter>
-  
-  <RT_chapter data-custom="valid">Chapter 2: The Execution</RT_chapter>
-
-</body>
-</html>