
this is test 2
this is test 2
TITLE:TESTING THE EDITOR: A HANDS-ON SANDBOX POST
Excerpt:Let’s break things (on purpose) to see what this editor can really do.
1. Basic Text Formatting
Does the editor handle these correctly?
- Bold textfor strong emphasis.
- Italic textfor subtle stress.
- Bold and italic together– does it combine properly?
- ~~Strikethrough~~to show deleted content.
Inline codefor short commands or variables.
Blockquote test:
“The only way to test an editor is to write something weird and see if it survives.” –Anonymous Tester
2. Lists (Ordered & Unordered)
Shopping list (bulleted):
- 🧪 Test case 1
- 🐛 Bug report draft
- 📝 Final proofread
Steps to reproduce (numbered):
- Open editor
- Paste this entire blog post
- Try to break alignment, lists, and spacing
- See if undo/redo works properly
3. Links & Anchors
- Internal link example(should scroll to section)
- External link to a real site
- Bad link test:[this link has no href] – does the editor prevent or fix it?
4. Headings Hierarchy
H3 – Subsection
Does margin and font size look right?
H4 – Deeper level
Still readable?
H5 – Rarely used
Does it collapse gracefully?
5. Code Blocks
javascript
// Test syntax highlighting (if supported)
function testEditor(editor) {
console.log("Pasting, indenting, and line breaks");
return editor.isWorking ? "✅ Pass" : "❌ Fail";
}
Plain text block:
text
Line 1: Tab test → should preserve spaces
Line 2: Empty line above?
6. Tables (if supported)
| Feature | Works? | Notes |
|---|---|---|
| Bold inside cell | Yes | |
| Line break in cell | No | Check if works |
| Copy-paste from Excel | ? | Try it |
7. Images & Media
Inline image test:
https://via.placeholder.com/150?text=Test+Image
Caption test:Does the editor let you add a caption below?
Video embed (if supported):<iframe width="560" height="315" src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0"></iframe>
(Does it convert to an actual embed or stay as HTML?)
8. Edge Cases & Weirdness
- Multiple spaces: between these words.
- Zero-width spaces:
(invisible character) – does it break anything? - Emojis: 🧪✅❌🐛🎉
- Special chars: < > & " ' © ® ™
9. Copy-Paste Test
Copy thisformatted sentencefrom another app (Google Docs, Word, etc.) and paste here.
Does the editor strip unwanted styles or keep them?
10. Save & Preview
- Does theautosavetrigger?
- DoesPreview moderender everything correctly?
- Switch betweenVisualandHTML/Markdown(if available) – does anything get corrupted?
Final verdict area:[ ] Passed all tests[ ] Failed on: ___________[ ] Editor crashed (please screenshot)
Comments
Thoughts, questions, and feedback.