mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 06:43:32 +00:00
ddba50ad62
This patch was generated by the following shell script. ``` function remove_column_prefix() { echo "Renaming $1 to $2" find .\ -type f\ ! -path "./obj*"\ ! -path "./.git"\ ! -path "./.hg"\ \( -name "*.html" -or\ -name "*.xhtml" -or\ -name "*.xht" -or\ -name "*.xul" -or\ -name "*.xml" -or\ -name "*.svg" \)\ -exec sed -i -e "s/$1/$2/g" "{}" \; } remove_column_prefix "MozColumn" "column" ``` Differential Revision: https://phabricator.services.mozilla.com/D59563 --HG-- extra : moz-landing-system : lando
19 lines
337 B
HTML
19 lines
337 B
HTML
<!DOCTYPE html>
|
|
<html style="direction: rtl;" contenteditable="true">
|
|
<head>
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
document.body.firstChild.style.columnCount = "3";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body style="width: 1px;" onload="boom();"><div>examination<span style="font-family: verdana;">x x x x
|
|
</span></div>
|
|
|
|
</body>
|
|
</html>
|